{% extends "admin/change_list.html" %} {% load i18n static admin_list %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% if formset and formset.errors %}

{% blocktranslate count counter=formset.total_error_count %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktranslate %}

{{ formset.non_form_errors }} {% endif %}
{% csrf_token %} {% if formset %}
{{ formset.management_form }}
{% endif %} {% block result_list %}
{% for form in formset %} {% if form and form.non_field_errors %} {% endif %} {{ form.id }} {% endfor %}
English {{ locale.fullname }}
{{ form.non_field_errors }}
{{ form.raw_string.value }} {{ form.translated }}
{% if action_form and actions_on_bottom and show_admin_actions %}{% admin_actions %}{% endif %} {% endblock %}
{% endblock %}