{% extends "admin/base_site.html" %} {% load i18n l10n admin_urls static %} {% block extrastyle %}{{ block.super }}{% endblock %} {% block bodyclass %}{{ block.super }} app-{{ opts.app_label }} model-{{ opts.model_name }} delete-confirmation delete-selected-confirmation{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

{% trans "Send Test Emails" %}

{% trans 'Templates to test' %}

Test attributes

{% csrf_token %}
{% for field in form %} {% if field.is_hidden %} {{ field }} {% else %}
{{ field.errors }} {{ field }} {% if field.help_text %}

{{ field.help_text|safe }}

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