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

{% trans "Events" %}

{% trans "The list below shows all events you have administrative access to. Click on the event name to access event details." %}

{% trans "Create a new event" %} {% if events|length == 0 %}

{% trans "You currently do not have access to any events." %}

{% else %} {% for e in events %} {% endfor %}
{% trans "Event name" %} {% trans "Organizer" %} {% trans "Start date" %} {% trans "End date" %}
{{ e.name }} {{ e.organizer }} {{ e.get_date_from_display }} {{ e.get_date_to_display }}
{% include "pretixcontrol/pagination.html" %} {% endif %} {% endblock %}