{% extends "admin/change_form.html" %} {% load i18n %} {% block content %}

{% trans "Export form submissions" %}

{% if errors %}

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

{{ adminform.non_field_errors }} {% endif %}
{% csrf_token %} {% block cms_form_hidden %}{% endblock %}
{% for field in adminform %}
{% if field.errors %}{{ field.errors }}{% endif %} {{ field.label_tag }} {{ field }}
{% endfor %}
{% block cms_form_buttons %} {% endblock %}
{% endblock %}