{% extends "pretixcontrol/organizers/base.html" %} {% load i18n %} {% load bootstrap3 %} {% 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" %}
{% trans "Organizer permissions" %} {% bootstrap_field form.can_create_events layout="control" %} {% bootstrap_field form.can_manage_gift_cards layout="control" %} {% bootstrap_field form.can_manage_customers layout="control" %} {% bootstrap_field form.can_change_teams layout="control" %} {% bootstrap_field form.can_change_organizer_settings layout="control" %}
{% trans "Event permissions" %} {% bootstrap_field form.all_events layout="control" %} {% bootstrap_field form.limit_events layout="control" %} {% bootstrap_field form.can_change_event_settings layout="control" %} {% bootstrap_field form.can_change_items layout="control" %} {% bootstrap_field form.can_view_orders layout="control" %} {% bootstrap_field form.can_change_orders layout="control" %} {% bootstrap_field form.can_checkin_orders layout="control" %} {% bootstrap_field form.can_view_vouchers layout="control" %} {% bootstrap_field form.can_change_vouchers layout="control" %}
{% endblock %}