summaryrefslogtreecommitdiffstats
path: root/templates/host.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/host.html')
-rw-r--r--templates/host.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/host.html b/templates/host.html
index df34ab2..5f492b0 100644
--- a/templates/host.html
+++ b/templates/host.html
@@ -26,12 +26,12 @@
</div>
<div class="tab-pane row" id="interfaces">
- {% for group in addresses | groupby('interface') %}
+ {% for group in addresses | select_with_attribute('vserver', False) | groupby('interface') %}
<div class="span6">
<h3>{{ group.grouper }}</h3>
<ul>
{% for address in group.list %}
- <li>{{address['address']}} /{{address['netmask']}}</li>
+ <li>{{address['address']}}/{{address['netmask']}}</li>
{% else %}
<li>no address</li>
{% endfor %}