{% extends "admin/base.html" %} {% block content %}

Send Real Message

{% csrf_token %}
Are you sure you want to send this message to:
{% if recipients %}
    {% for type, recipients_list in recipients.items %} {% if not forloop.first %}
    {% endif %} {{ type|upper }} {% for recipient in recipients_list %}
  • {{ recipient }}
  • {% endfor %} {% endfor %}
{% else %}
This message has no recipients.
{% endif %}
{% endblock content %}