{% extends 'generic/object.html' %}
{% load i18n %}
{% block content %}
| {% trans "Name" %} |
{{ object.name }} |
{% if object.description %}
| {% trans "Description" %} |
{{ object.description }} |
{% endif %}
| {% trans "IANA ID" %} |
{{ object.iana_id }} |
| {% trans "Address" %} |
{{ object.address }} |
| {% trans "Referral URL" %} |
{{ object.referral_url }} |
| {% trans "WHOIS Server" %} |
{{ object.whois_server }} |
| {% trans "Abuse Email" %} |
{{ object.abuse_email }} |
| {% trans "Abuse Phone" %} |
{{ object.abuse_phone }} |
{% include 'inc/panels/custom_fields.html' %}
{% include 'inc/panels/tags.html' %}
{% endblock %}