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

Export translations

{% csrf_token %} {% if export_form.errors %}
{% for error in export_form.non_field_errors.values %} {{ error }} {% endfor %}
{% endif %} {% for field in export_form %} {% if field.name != 'translation_models' %} {% endif %} {% endfor %}
Translation models
{{ field.label }} {{ field }} {% if field.errors %}
{{ field.errors }}
{% endif %}

Import translations

{% csrf_token %} {{ import_form.as_table }}
{% endblock %} {% if not is_popup %} {% block breadcrumbs %} {% endblock %} {% endif %}