diff options
Diffstat (limited to 'src/lib/Server/Hostbase/hostbase/webtemplates/zones.html')
-rw-r--r-- | src/lib/Server/Hostbase/hostbase/webtemplates/zones.html | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/Server/Hostbase/hostbase/webtemplates/zones.html b/src/lib/Server/Hostbase/hostbase/webtemplates/zones.html index b8bbc9d90..405b748f9 100644 --- a/src/lib/Server/Hostbase/hostbase/webtemplates/zones.html +++ b/src/lib/Server/Hostbase/hostbase/webtemplates/zones.html @@ -14,8 +14,7 @@ {% endblock %} {% block content %} - -{% if zones %} +{% if zone_list %} <table border="0" width="100%"> <colgroup> <col width="200"> @@ -24,7 +23,7 @@ <col width="*"> <tr> <td><b>zone</b></td> </tr> - {% for zone in zones|dictsort:"zone" %} + {% for zone in zone_list|dictsort:"zone" %} <tr> <td> {{ zone.zone }}</td> <td> <a href="{{ zone.id }}">view</a> </td> <td> <a href="{{ zone.id }}/edit">edit</a> </td> |