{% extends "pretixcontrol/base.html" %} {% load i18n %} {% load bootstrap3 %} {% block title %}{% trans "Notification settings" %}{% endblock %} {% block content %}

{% trans "Notification settings" %}

{% csrf_token %}
{% if request.user.notifications_send %}
{% trans "Notifications are turned on according to the settings below." %}
{% else %}
{% trans "All notifications are turned off globally." %}
{% endif %}
{% trans "Choose event" %}

{% trans "Save your modifications before switching events." %}

{% csrf_token %}
{% trans "Choose notifications to get" %} {% for type, enabled, global in types %} {% endfor %}
{% trans "Notification type" %} {% trans "E-Mail notification" %}
{{ type.verbose_name }} {% if not event or type.required_permission in permset %} {% else %} {% endif %}
{% endblock %}