{% extends "events/base.html" %} {% load event_tags %} {% load perm_tags %} {% load styled_forms %} {% block title %}{{ block.super }}{% trans "Edit Email for Registration Confirmation and Reminders" %}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}

{% trans "Edit Email to Event Registrants" %}

{% blocktrans %} This Email is used for: {% endblocktrans %}

{% trans "Event: " %}{{ event.title }}

{% if form.errors.values %}
    {{ form.non_field_errors }} {% for field in form %} {% if field.errors %} {% for error in field.errors %}
  • {{ field.label_tag }} – {{ error }}
  • {% endfor %} {% endif %} {% endfor %}
{% endif %}
{% csrf_token %}
{% trans 'To' %}: {% trans 'ALL Attendees' %} {% trans "View all registrant(s)" %}
{% for field in form %}
{{ field.errors }}
{% trans field.label %}
{{ field }}
{{ field.help_text|safe }}
{% endfor %}
{% endblock %} {% block extra_body %} {{ block.super }} {{ form.media }} {% endblock %}