{% extends '_base.html' %} {% load render_table from django_tables2 %} {% block title %}Zone {{ zone }}{% endblock %} {% block content %}
BIND Export {% if perms.dns.change_zone %} Edit this zone {% endif %} {% if perms.dns.delete_zone %} Delete this zone {% endif %}

{{ zone }}

Zone
Name {{ zone.name }}
Records {{ record_count }}
TTL {{ zone.ttl }}
SOA Name {{ zone.soa_name }}
SOA Contact {{ zone.soa_contact }}
SOA Serial {{ zone.soa_serial }}
SOA Refresh {{ zone.soa_refresh }}
SOA Retry {{ zone.soa_retry }}
SOA Expire {{ zone.soa_expire }}
SOA Minimum {{ zone.soa_minimum }}
Description {% if zone.description %} {{ zone.description }} {% else %} - {% endif %}
Created {{ zone.created }}
Last Updated {{ zone.last_updated }}
Records
{% if records %} {% for r in records %} {% endfor %}
{{ r }} {{ r.record_type }} {% if r.priority %} {{ r.priority }} {% else %} - {% endif %} {% if r.address %} {{ r.address }} {% else %} - {% endif %} {% if r.value %} {{ r.value }} {% else %} - {% endif %}
{% else %}
None
{% endif %}
BIND Export Select
{{ bind_export }}
{% endblock %} {% block javascript %} {% endblock %}