{% extends "admin/base_site.html" %}{% load i18n admin_static %} {% block extrahead %}{{ block.super }} {% if jquery_in_vendor %} {% else %} {% endif %} {{ form.media }} {% endblock %} {% block extrastyle %}{{ block.super }}{% endblock %} {% block content %}
{% if form.errors %}

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

{{ form.non_field_errors }} {% endif %} {% if form.fields %}

{% trans "Extra fields" %}

{% for field in form %}
{{ field.errors }} {% if field.is_checkbox %} {{ field }}{{ field.label_tag }} {% else %} {{ field.label_tag }} {% if field.is_readonly %}

{{ field.contents|linebreaksbr }}

{% else %} {{ field }} {% endif %} {% endif %} {% if field.help_text %}

{{ field.help_text|safe }}

{% endif %}
{% endfor %} {% endif %}

{% trans "Confirm export" %}

{% trans "The following object types will be exported" %}
    {% for model in models %}
  • {{ model }}
  • {% endfor %}
{% endblock %}