{% extends "base.html" %} {% load i18n %} {% block breadcrumbs %} {% endblock %} {% block content %} {% if warnings %}

{% for user_admin_url, username in warnings %} Warning: User {{ username }} has no email address
{% endfor %} {% endif %}

{% for to, subject, body, sending in emails %}
{% if sending %}Message: {{ sending }}
{% endif %} From: {{ from }}
To: {{ to }}
Subject: {{ subject }}
{{ body }}
{% endfor %}

{% endblock %}