{% extends 'netbox_dns/zone_base.html' %} {% load helpers %} {% load render_table from django_tables2 %} {% block content %}
Zone
Name {{ object.name }}
Status {{ object.status }}
Nameservers
Default TTL {{ object.default_ttl }}
{% include 'extras/inc/tags_panel.html' with tags=object.tags.all url='plugins:netbox_dns:zone_list' %} {% include 'inc/custom_fields_panel.html' %}
Zone SOA
TTL {{ object.soa_ttl }}
Primary Nameserver {{ object.soa_mname }}
Responsible {{ object.soa_rname }}
Serial {{ object.soa_serial }}
Refresh {{ object.soa_refresh }}
Retry {{ object.soa_retry }}
Expire {{ object.soa_expire }}
Minimum TTL {{ object.soa_minimum }}
{% endblock %}