{% load i18n %}
{% trans "Compose Email" %}
{% csrf_token %}
{{ form.subject }} {% if form.subject.errors %}
{% for error in form.subject.errors %} {{ error }} {% endfor %}
{% endif %}
{% for choice in form.recipients %}
{{ choice }}
{% endfor %}
{% if form.recipients.errors %}
{% for error in form.recipients.errors %} {{ error }} {% endfor %}
{% endif %}
{{ form.message }} {% if form.message.errors %}
{% for error in form.message.errors %} {{ error }} {% endfor %}
{% endif %}
{% trans "Email will be sent to all selected recipients" %}
{% trans "Loading..." %}
{% trans "Sending email..." %}