{% extends "orga/mails/base.html" %} {% load bootstrap4 %} {% load i18n %} {% block mail_content %}
{% blocktrans trimmed %} You can edit the default templates and your custom templates for emails here. If you want to send emails to some or all of your speakers, head over to the "Send Emails" tab. Mails queued for sending are in the "Outbox" tab. {% endblocktrans %}
{% csrf_token %} {% trans "Acknowledge Mail" %} {% bootstrap_form ack layout='event' %}
{% csrf_token %} {% trans "Accept Mail" %} {% bootstrap_form accept layout='event' %}
{% csrf_token %} {% trans "Rejection Mail" %} {% bootstrap_form reject layout='event' %}
{% csrf_token %} {% trans "Update Mail" %} {% bootstrap_form update layout='event' %}
{% for template in other %}
{% csrf_token %} {% trans "Custom Mail" %} {% bootstrap_form template layout='event' %}
{% endfor %}
{% endblock %}