{% extends "pretixcontrol/event/base.html" %} {% load i18n %} {% load bootstrap3 %} {% block title %}{% trans "Create Email Rule" %}{% endblock %} {% block content %}

{% trans "Create Email Rule" %}

{% block inner %}
{% csrf_token %} {% bootstrap_form_errors form %} {% bootstrap_field form.enabled layout='control' %}
{% trans "Content" %} {% bootstrap_field form.subject layout='control' %} {% bootstrap_field form.template layout='control' %}
{% trans "Recipients" %} {% bootstrap_field form.send_to layout='control' %} {% bootstrap_field form.include_pending layout='control' %} {% bootstrap_field form.all_products layout='control' %} {% bootstrap_field form.limit_products layout='horizontal' %}
{% trans "Time" %} {% bootstrap_field form.schedule_type layout='horizontal' %} {% bootstrap_field form.send_date layout='horizontal' %} {% bootstrap_field form.send_offset_days layout='horizontal' %} {% bootstrap_field form.send_offset_time layout='horizontal' %}
{% blocktrans trimmed %} For technical reasons, the email might actually be sent a bit later than your configured date. Typically, this will not be more than 10 minutes. Your email will never be sent earlier than the time you configured. {% endblocktrans %}
{% endblock %} {% endblock %}