{% extends "pretixcontrol/organizers/base.html" %} {% load i18n %} {% load bootstrap3 %} {% load getitem %} {% load icon %} {% block inner %} {% if team %}

{% trans "Team:" %} {{ team.name }}

{% else %}

{% trans "Create a new team" %}

{% blocktrans trimmed %} You will be able to add team members in the next step. {% endblocktrans %}

{% endif %}
{% csrf_token %} {% bootstrap_form_errors form %}
{% trans "General information" %} {% bootstrap_field form.name layout="control" %} {% bootstrap_field form.require_2fa layout="control" %}
{% trans "Organizer permissions" %} {% bootstrap_field form.all_organizer_permissions layout="control" %}

{% icon "info-circle" %} {% blocktrans trimmed %} Even if a team has no access to a certain category of data, they might still be able to see parts of this data when it is linked to data they can see. {% endblocktrans %} {% blocktrans trimmed %} For example, someone with access to customer accounts will be able to see some information about gift cards linked to a customer account, even if they generally can't see gift cards directly. {% endblocktrans %}

{% for f in form.organizer_field_names %} {% bootstrap_field form|getitem:f layout="control" %} {% endfor %}
{% trans "Event permissions" %} {% bootstrap_field form.all_events layout="control" %} {% bootstrap_field form.limit_events layout="control" %} {% bootstrap_field form.all_event_permissions layout="control" %}

{% icon "info-circle" %} {% blocktrans trimmed %} Even if a team has no access to a certain category of data, they might still be able to see parts of this data when it is linked to data they can see. {% endblocktrans %} {% blocktrans trimmed %} For example, someone with access to orders will be able to see some information about vouchers used to create an order, even if they generally can't see vouchers directly. {% endblocktrans %}

{% for f in form.event_field_names %} {% bootstrap_field form|getitem:f layout="control" %} {% endfor %}
{% endblock %}