{% extends "admin/change_list.html" %} {% load i18n static admin_list %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% if perms.dbtranslate.administrate_translations %} {% endif %} {% 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.msgid }} {{ form.msgid.value }} {{ form.msgctxt }} {% if form.msgctxt.value %} Context: {{ form.msgctxt.value }} {% endif %} {{ form.comment }} {% if form.comment.value %} Comment: {{ form.comment.value }} {% endif %}
{{ form.msgstr }} {{ form.tcomment }}
{% endblock %}
{% endblock %}