{% endif %}
{% trans "Name" %} |
{{ object.name }} |
{% if mask_warning %}
{% trans "Warning" %} |
{{ mask_warning }} |
{% endif %}
{% if unicode_name %}
{% trans "IDN" %} |
{{ unicode_name }} |
{% endif %}
{% trans "Zone" %} |
{% if object.managed %}
{{ object.zone }} |
{% else %}
{{ object.zone }} |
{% endif %}
{% trans "Type" %} |
{{ object.type }} |
{% trans "Value" %} |
{{ object.value }} |
{% if unicode_value %}
{% trans "Unicode Value" %} |
{{ unicode_value }} |
{% endif %}
{% if cname_warning %}
{% trans "Warning" %} |
{{ cname_warning }} |
{% endif %}
{% if object.description %}
{% trans "Description" %} |
{{ object.description }} |
{% endif %}
{% if object.tenant %}
{% trans "Tenant" %} |
{% if object.tenant.group %}
{{ object.tenant.group|linkify }} /
{% endif %}
{{ object.tenant|linkify|placeholder }}
|
{% endif %}
{% trans "TTL" %} |
{{ object.ttl|placeholder }} |
{% if object.type == 'A' or object.type == 'AAAA' %}
{% trans "Disable PTR" %} |
{% checkmark object.disable_ptr %} |
{% endif %}
{% if object.ptr_record %}
{% trans "PTR Record" %} |
{{ object.ptr_record|linkify }} |
{% endif %}
{% if object.address_records.exists %}
{% trans "Address Records" %} |
{% for address_record in object.address_records.all %}
{{ address_record|linkify:"name" }}.{{ address_record.zone|linkify:"name" }} |
{% endfor %}
|
{% endif %}
{% if ipam_ip_address %}
{% trans "IPAM IP Address" %} |
{{ ipam_ip_address|linkify }} |
{% endif %}
Status |
{% badge object.get_status_display bg_color=object.get_status_color %} |
{% if cname_target_table %}
{% if cname_target_table.rows|length == 1 %}
{% else %}
{% endif %}
{% render_table cname_target_table 'inc/table.html' %}
{% elif cname_table %}
{% if cname_table.rows|length == 1 %}
{% else %}
{% endif %}
{% render_table cname_table 'inc/table.html' %}
{% endif %}
{% if not object.managed %}
{% include 'inc/panels/custom_fields.html' %}
{% endif %}