{% extends "admin/change_form.html" %} {% load i18n admin_modify %} {% load truncchar %} {% block extrahead %}{{ block.super }} {% endblock %} {% block breadcrumbs %}{% if not is_popup %} {% endif %}{% endblock %} {% block content %}
{% block object-tools %} {% endblock %}
{% csrf_token %}{% block form_top %}{% endblock %}
{% if is_popup %}{% endif %} {% if save_on_top %}{% include "admin/save_only_submit_line.html" %}{% endif %} {% if errors %}

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

    {% for error in adminform.form.non_field_errors %}
  • {{ error }}
  • {% endfor %}
{% endif %} {% for fieldset in adminform %} {% include "admin/includes/mass_fieldset.html" %} {% endfor %} {% block after_field_sets %}{% endblock %} {% block after_related_objects %}{% endblock %} {% include "admin/save_only_submit_line.html" %} {% if adminform and add %} {% endif %} {# JavaScript for prepopulated fields #} {% prepopulated_fields_js %}
{% endblock %}