{% extends "events/base.html" %} {% load event_tags %} {% load perm_tags %} {% load styled_forms %} {% block title %}{{ block.super }}{% trans "Add" %}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}

{% trans "Email to Event Registrants" %}

{% csrf_token %}

{% trans "Event Title: " %}{% blocktrans with title=event.title %}{{ title }}{% endblocktrans %}

{% blocktrans with payment_status=form.payment_status %}{{ payment_status }}{% endblocktrans %}

{% blocktrans with label=form.subject.label %}{{ label }}{% endblocktrans %}:

{% blocktrans with subject=form.subject %}{{ subject }}{% endblocktrans %}

{% blocktrans with label=form.body.label %}{{ label }}{% endblocktrans %}:

{% blocktrans with body=form.body %}{{ body }}{% endblocktrans %}
{% trans "For security a footer will be automatically appended indicating the sender (you!) as well as logging a security event to prevent abuse of the system" %}.
{% trans "This message will be sent IMMEDIATELY. DO NOT HIT REFRESH!" %}.
{% endblock %} {% block extra_body %} {{ block.super }} {{ form.media }} {% endblock %}