{% extends "pretixcontrol/organizers/base.html" %} {% load i18n %} {% load bootstrap3 %} {% block inner %}
{% csrf_token %}

{% blocktrans trimmed %} You can use the following list to control who can create new events in the name of this organizer and who can add more people to this list. This does not control who has access to a particular event. You can control the access to an event in the "Permissions" section of the event's settings. A user does not need to be on the list here to get access to an event. {% endblocktrans %}

{% trans "Everyone on this list can control the organizer settings on this page." %}

{% bootstrap_formset_errors formset %} {{ formset.management_form }}
{% for form in formset %} {% endfor %}
{% trans "User" %} {% trans "Create events" %} {% trans "Change permissions" %} {% trans "Delete" %}
{{ form.id }} {% if form.instance.user %} {{ form.instance.user }} {% else %} {{ form.instance.invite_email }} {% endif %} {{ form.can_create_events }} {{ form.can_change_permissions }} {{ form.DELETE }}
{% trans "Adding a new user" %}
{% blocktrans trimmed %} To add a new user, you can enter their email address here. If they already have a pretix account, they will immediately be added to the team. Otherwise, they will be sent an email with an invitation. {% endblocktrans %}
{% bootstrap_field add_form.user layout='inline' %}
{{ add_form.can_create_events }} {{ add_form.can_change_permissions }}
{% endblock %}