{% extends "admin/base_site.html" %} {% load i18n l10n static %} {% load url from future %} {% load admin_urls %} {% block extrastyle %}{{ block.super }}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block title %}{% trans 'Set the domain name of the cloned zone' %}{% endblock %} {% block content %}
{% csrf_token %}
{% if form.errors %}

{% blocktrans count counter=form.errors.items|length %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %}

{% endif %}

{% trans 'Set the domain name of the cloned zone' %}

{% trans "Enter a domain name for the cloned zone." %}

{{ form.clone_domain_name.errors }} {{ form.clone_domain_name }}

{{ form.clone_domain_name.help_text }}

{{ form.option_clone_dynamic.errors }} {{ form.option_clone_dynamic }}

{{ form.option_clone_dynamic.help_text }}

{{ form.option_clone_metadata.errors }} {{ form.option_clone_metadata }}

{{ form.option_clone_metadata.help_text }}

{# Special Fields #} {# These are needed for the action code to work. This an undocumented Django feature #} {% for obj in queryset %} {% endfor %}
{% endblock %}