{% extends 'netbox_dns/zone/base.html' %}
{% load helpers %}
{% load render_table from django_tables2 %}
{% block content %}
Name |
{{ object.name }} |
{% if unicode_name %}
IDN |
{{ unicode_name }} |
{% endif %}
{% if object.view %}
View |
{{ object.view }}
|
{% endif %}
Tenant |
{% if object.tenant.group %}
{{ object.tenant.group|linkify }} /
{% endif %}
{{ object.tenant|linkify|placeholder }}
|
Status |
{{ object.status }} |
Nameservers |
|
{% if nameserver_warnings %}
Warnings |
{% for warning in nameserver_warnings %}
{{ warning }} |
{% endfor %}
|
{% endif %}
{% if nameserver_errors %}
Errors |
{% for error in nameserver_errors %}
{{ error }} |
{% endfor %}
|
{% endif %}
Default TTL |
{{ object.default_ttl }} |
Description |
{{ object.description }} |
{% include 'inc/panels/tags.html' %}
{% include 'inc/panels/custom_fields.html' %}
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 %}