{% extends '_base.html' %} {% load render_table from django_tables2 %} {% block title %}Zone {{ zone }}{% endblock %} {% block content %}
{% 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 }}
{% with heading='Records' %} {% render_table dns_records_table 'panel_table.html' %} {% endwith %}
{% endblock %}