{% 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 'Transfer zone to another user' %}{% 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 'Transfer zone' %}

{% trans "Enter the username of the account to which the zone will be transferred." %}

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