{% extends "base.html" %} {% load i18n %}{% load bootstrap %} {% block content %}

{% trans "Domains (yours first, then public)" %}

{% for domain in your_domains %} {% empty %} {% endfor %} {% for domain in public_domains %} {% empty %} {% endfor %}
{% trans "Domain" %} {% trans "Public?" %} {% trans "Available?" %} {% trans "Owner" %} {% trans "Comment" %}
{{ domain.domain }} {{ domain.public|yesno }} {{ domain.available|yesno }} {{ domain.created_by }} {{ domain.comment }}
{% trans "No domains from you yet." %}
{{ domain.domain }} {{ domain.public|yesno }} {{ domain.available|yesno }} {{ domain.created_by }} {{ domain.comment }}
{% trans "No public domains from other users yet." %}

{% trans "Add a new Domain" %}

{% csrf_token %} {{ form|bootstrap }}

{% trans "Help" %}

{% blocktrans %}Here you can add new domains (zones) which you control (and this is only useful if you have some own zone which you can update automatically).{% endblocktrans %}

{% blocktrans %}You need to be able to configure the primary master nameserver of the zone so it accepts dynamic updates (via RFC 2136 "dynamic update" protocol) if the correct update secret is presented.{% endblocktrans %}

{% trans "We'll show you configuration examples after you add a domain." %}

{% endblock %}