{% extends "pretixcontrol/base.html" %} {% load i18n %} {% block title %}{% trans "Create a new event" %}{% endblock %} {% block content %}

{% trans "Create a new event" %}

{% if organizers|length == 0 %}
{% trans "You are not permitted to create new events in the name of any organizer." %}
{% else %}

{% trans "Please choose the organizer of this event from the list below." %}

{% for o in organizers %} {% endfor %}
{% trans "Organizer name" %}
{{ o.name }}
{% include "pretixcontrol/pagination.html" %} {% endif %} {% endblock %}