summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2013-05-23 15:17:40 +0200
committerAlexander Sulfrian <alexander@sulfrian.net>2013-05-23 15:17:40 +0200
commitf1589747d81791a0e079dc792dac24a440576148 (patch)
tree9210184d6cd4f0fbd229a7e5009d66f055215990
parentab825994f13821891559a749f0b9d4c46a4fb1f6 (diff)
downloadwww-f1589747d81791a0e079dc792dac24a440576148.tar.gz
www-f1589747d81791a0e079dc792dac24a440576148.tar.bz2
www-f1589747d81791a0e079dc792dac24a440576148.zip
index: do not show vserver ips on vserver-hosts
-rw-r--r--templates/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/index.html b/templates/index.html
index 9681fad..043136e 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -38,7 +38,7 @@
</p>
<ul class="ips">
- {% for ip in host['addresses'] | sort(attribute='address') %}
+ {% for ip in host['addresses'] | select_with_attribute('vserver', False) | sort(attribute='address') %}
<li>{{ip['address']}}</li>
{% endfor %}
</ul>