{% extends 'generic/object.html' %}
{% load helpers %}
{% load plugins %}
{% load render_table from django_tables2 %}
{% load perms %}
{% block content %}
| Name |
{{ object.name }} |
{% if object.description %}
| Description |
{{ object.description }} |
{% endif %}
| Tenant |
{% if object.tenant.group %}
{{ object.tenant.group|linkify }} /
{% endif %}
{{ object.tenant|linkify|placeholder }}
|
| Nameservers |
{% for nameserver in object.nameservers.all %}
| {{ nameserver|linkify }} |
{% endfor %}
|
| Description |
{{ object.description }} |
{% include 'inc/panels/tags.html' %}
{% include 'inc/panels/custom_fields.html' %}
| Registrar |
{{ object.registrar|linkify|placeholder }} |
| Registrant |
{{ object.registrant|linkify|placeholder }} |
| Administrative Contact |
{{ object.admin_c|linkify|placeholder }} |
| Technical Contact |
{{ object.tech_c|linkify|placeholder }} |
| Billing Contact |
{{ object.billing_c|linkify|placeholder }} |
{% include 'inc/panel_table.html' with table=record_template_table heading="Record Templates" %}
{% endblock %}