{% extends 'netbox_dns/object.html' %} {% load helpers %} {% load plugins %} {% load render_table from django_tables2 %} {% load view_helpers %} {% load perms %} {% block breadcrumbs %}
Name | {{ object.name }} |
Status | {{ object.status }} |
Nameservers |
|
TYPE | NAME | VALUE | TTL | Actions | {% for record in records %}
---|---|---|---|---|
{{ record.type }} | {{ record.name }} | {{ record.value }} | {{ record.ttl }} | {% if request.user|can_change:object %} {% plugin_edit_button record %} {% endif %} {% if request.user|can_delete:object %} {% plugin_delete_button record %} {% endif %} |