{% 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 "E-mail settings" %}

{% csrf_token %} {% bootstrap_form_errors form %}
{% trans "General" %} {% bootstrap_field form.mail_from layout="control" %} {% bootstrap_field form.mail_from_name layout="control" %} {% bootstrap_field form.mail_text_signature layout="control" %} {% bootstrap_field form.mail_bcc layout="control" %}
{% trans "E-mail 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_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_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_text_customer_reset" %}
{% trans "SMTP settings" %} {% bootstrap_field form.smtp_use_custom layout="control" %} {% bootstrap_field form.smtp_host layout="control" %} {% bootstrap_field form.smtp_port layout="control" %} {% bootstrap_field form.smtp_username layout="control" %} {% bootstrap_field form.smtp_password layout="control" %} {% bootstrap_field form.smtp_use_tls layout="control" %} {% bootstrap_field form.smtp_use_ssl layout="control" %}
{% endblock %}