{% extends "pretixcontrol/base.html" %} {% load i18n %} {% load bootstrap3 %} {% load formset_tags %} {% block custom_header %} {{ block.super }} {% endblock %} {% block title %}{% trans "Organizer" %}{% endblock %} {% block content %}

{% trans "Email settings" %}

{% csrf_token %} {% bootstrap_form_errors form %}
{% trans "General" %}
{% if request.organizer.settings.smtp_use_custom %} {% trans "Custom SMTP server" %}: {{ request.organizer.settings.smtp_host }} {% else %} {% trans "System-provided email server" %} {% endif %}    {% trans "Edit" %}
{{ request.organizer.settings.mail_from }}    {% trans "Edit" %}
{% bootstrap_field form.mail_from_name layout="control" %} {% bootstrap_field form.mail_text_signature layout="control" %} {% bootstrap_field form.mail_bcc layout="control" %}
{% trans "Email content" %}
{% blocktrans asvar title_customer_registration %}Customer account registration{% endblocktrans %} {% include "pretixcontrol/event/mail_settings_fragment.html" with pid="customer_registration" title=title_customer_registration items="mail_subject_customer_registration,mail_text_customer_registration" %} {% blocktrans asvar title_email_change %}Customer account email change{% endblocktrans %} {% include "pretixcontrol/event/mail_settings_fragment.html" with pid="email_change" title=title_email_change items="mail_subject_customer_email_change,mail_text_customer_email_change" %} {% blocktrans asvar title_reset %}Customer account password reset{% endblocktrans %} {% include "pretixcontrol/event/mail_settings_fragment.html" with pid="reset" title=title_reset items="mail_subject_customer_reset,mail_text_customer_reset" %}
{% endblock %}