{% extends "admin/base_site.html" %}{% load i18n admin_modify admin_urls static %}{% load url from future %} {% block extrastyle %}{{ block.super }}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% trans 'Translate and save the following messages.' %}
{% csrf_token %}
{{ form.errors }} {% for field in form %}
{{ field.errors }} {% if field.is_checkbox %} {{ field }}{{ field.label_tag }} {% else %} {{ field.label_tag }} {% if field.is_readonly %}

{{ field.contents }}

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

{{ field.help_text|safe }}

{% endif %}
{% endfor %}
{% submit_row %}
{% endblock %}