{% extends "pretixcontrol/base.html" %} {% load i18n %} {% load urlreplace %} {% load bootstrap3 %} {% block title %}{% trans "Events" %}{% endblock %} {% block content %}
{% trans "The list below shows all events you have administrative access to. Click on the event name to access event details." %}
{% if events|length == 0 and not filter_form.filtered %}{% blocktrans trimmed %} You currently do not have access to any events. {% endblocktrans %}
{% trans "Create a new event" %}{% trans "Create a new event" %}
{% trans "Event name" %} | {% trans "Short form" %} | {% if not hide_orga %}{% trans "Organizer" %} | {% endif %}{% trans "Start date" %} | {% trans "End date" %} | {% trans "Status" %} |
---|---|---|---|---|---|
{{ e.name }} {% if e.has_subevents %} {% trans "Series" %} {% endif %} | {{ e.slug }} | {% if not hide_orga %}{{ e.organizer }} | {% endif %}{% if e.has_subevents %} {{ e.min_from|default_if_none:"" }} {% else %} {{ e.get_date_from_display }} {% endif %} | {% if e.has_subevents %} {{ e.max_fromto|default_if_none:e.max_from|default_if_none:e.max_to|default_if_none:"" }} {% else %} {{ e.get_date_from_display }} {% endif %} | {% if not e.live %} {% trans "Shop disabled" %} {% elif e.presale_has_ended %} {% trans "Presale over" %} {% elif not e.presale_is_running %} {% trans "Presale not started" %} {% else %} {% trans "On sale" %} {% endif %} |