{% extends 'netbox_dns/object.html' %} {% load helpers %} {% load plugins %} {% load render_table from django_tables2 %} {% load view_helpers %} {% load perms %} {% block extra_controls %} Add Record {{ block.super }} {% endblock %} {% block content %}
Zone
Name {{ object.name }}
Status {{ object.status }}
Nameservers
{% include 'inc/custom_fields_panel.html' %}
{% include 'extras/inc/tags_panel.html' with tags=object.tags.all url='plugins:netbox_dns:zone_list' %}
Records
{% for record in records %} {% endfor %}
TYPE NAME VALUE TTL Actions
{{ record.type }} {{ record.name|truncatechars:32 }} {{ record.value|truncatechars:64 }} {{ record.ttl }} {% if request.user|can_change:object %} {% plugin_edit_button record %} {% endif %} {% if request.user|can_delete:object %} {% plugin_delete_button record %} {% endif %}
{% endblock %}