{% extends "base_resource.html" %} {% load i18n %} {% block entity_content %}

{% trans 'Domain Name' %}

{% csrf_token %} {{ form.member.as_hidden }}
{{ form.category.label_tag }} {% if form.category.help_text %}
{{ form.category.help_text|safe }}
{% endif %} {{ form.category }} {{ form.category.errors }}
{% if form.label.help_text %}
{{ form.label.help_text|safe }}
{% endif %} {{ form.label }} {{ form.label.errors }}
.{{ domain_zone }} {{ form.domain_zone.as_hidden }}
{{ form.ip_address.label_tag }} {% if form.ip_address.help_text %}
{{ form.ip_address.help_text|safe }}
{% endif %} {{ form.ip_address }} {{ form.ip_address.errors }}
{{ form.ttl.label_tag }} {% if form.ttl.help_text %}
{{ form.ttl.help_text|safe }}
{% endif %} {{ form.ttl }} {{ form.ttl.errors }}
{{ form.server_name.label_tag }} {% if form.server_name.help_text %}
{{ form.server_name.help_text|safe }}
{% endif %} {{ form.server_name }} {{ form.server_name.errors }}
{{ form.txt.label_tag }} {% if form.txt.help_text %}
{{ form.txt.help_text|safe }}
{% endif %} {{ form.txt }} {{ form.txt.errors }}
{{ form.distance.label_tag }} {% if form.distance.help_text %}
{{ form.distance.help_text|safe }}
{% endif %} {{ form.distance }} {{ form.distance.errors }}
{{ form.port.label_tag }} {% if form.port.help_text %}
{{ form.port.help_text|safe }}
{% endif %} {{ form.port }} {{ form.port.errors }}
{{ form.weight.label_tag }} {% if form.weight.help_text %}
{{ form.weight.help_text|safe }}
{% endif %} {{ form.weight }} {{ form.weight.errors }}
{{ form.sshfp_algorithm.label_tag }} {% if form.sshfp_algorithm.help_text %}
{{ form.sshfp_algorithm.help_text|safe }}
{% endif %} {{ form.sshfp_algorithm }} {{ form.sshfp_algorithm.errors }}
{{ form.sshfp_type.label_tag }} {% if form.sshfp_type.help_text %}
{{ form.sshfp_type.help_text|safe }}
{% endif %} {{ form.sshfp_type }} {{ form.sshfp_type.errors }}
{{ form.sshfp_data.label_tag }} {% if form.sshfp_data.help_text %}
{{ form.sshfp_data.help_text|safe }}
{% endif %} {{ form.sshfp_data }} {{ form.sshfp_data.errors }}
{% endblock %}