{% extends 'netbox_dns/zone/base.html' %} {% load helpers %} {% load i18n %} {% block content %}
{% trans "Zone" %}
{% if unicode_name %} {% endif %} {% if parent_zone %} {% endif %} {% if object.description %} {% endif %} {% if nameserver_warnings %} {% endif %} {% if nameserver_errors %} {% endif %}
{% trans "Name" %} {{ object.name }}
{% trans "IDN" %} {{ unicode_name }}
{% trans "Parent Zone" %} {{ parent_zone|linkify }}
{% trans "View" context "DNS" %} {{ object.view|linkify }}
{% trans "Description" %} {{ object.description }}
{% trans "Tenant" %} {% if object.tenant.group %} {{ object.tenant.group|linkify }} / {% endif %} {{ object.tenant|linkify|placeholder }}
{% trans "Status" %} {% badge object.get_status_display bg_color=object.get_status_color %}
{% trans "Nameservers" %} {% for nameserver in object.nameservers.all %} {% endfor %}
{{ nameserver|linkify }}
{% trans "Warnings" %} {% for warning in nameserver_warnings %} {% endfor %}
{{ warning }}
{% trans "Errors" %} {% for error in nameserver_errors %} {% endfor %}
{{ error }}
{% trans "Default TTL" %} {{ object.default_ttl }}
{% trans "Description" %} {{ object.description }}
{% include 'inc/panels/tags.html' %} {% include 'inc/panels/custom_fields.html' %}
{% trans "Zone SOA" %}
{% if object.soa_serial_auto %} {% else %} {% endif %}
{% trans "TTL" %} {{ object.soa_ttl }}
{% trans "MName" %} {{ object.soa_mname|linkify }}
{% trans "RName" %} {{ object.soa_rname }}
{% trans "Serial (auto-generated)" %} {{ object.soa_serial }}
{% trans "Serial" context "SOA" %} {{ object.soa_serial }}
{% trans "Refresh" %} {{ object.soa_refresh }}
{% trans "Retry" %} {{ object.soa_retry }}
{% trans "Expire" %} {{ object.soa_expire }}
{% trans "Minimum TTL" %} {{ object.soa_minimum }}
{% if object.rfc2317_prefix %}
{% trans "RFC2317" %}
{% if object.rfc2317_parent_managed %} {% endif %}
{% trans "Prefix" %} {{ object.rfc2317_prefix }}
{% trans "Parent Managed" %} {% checkmark object.rfc2317_parent_managed %}
{% trans "Parent Zone" %} {{ object.rfc2317_parent_zone|linkify }}
{% endif %}
{% endblock %}