{% extends "admin/base_site.html" %} {% load i18n admin_urls static %} {% block extrahead %} {{ block.super }} {{ media }} {% endblock %} {% block bodyclass %}{{ block.super }} app-{{ opts.app_label }} model-{{ opts.model_name }} change-form{% endblock %} {% block content %}
{% csrf_token %} {% if errors %}

{% if errors|length == 1 %}{% translate "Please correct the error below." %}{% else %}{% translate "Please correct the errors below." %}{% endif %}

{{ adminform.form.non_field_errors }} {% endif %}
{% for field in form %}
{{ field.errors }} {{ field.label_tag }} {{ field }} {% if field.help_text %}
{{ field.help_text|safe }}
{% endif %}

{% endfor %}
{% for button_text, button_def in original.schema.buttons.items %} {% endfor %}
{% endblock %}