{% 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 zone origin' %}{% 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 zone origin' %}

{% trans "Enter the origin of the new zone." %}

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