{% 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" %} | {% if not hide_orga %}{% trans "Organizer" %} | {% endif %}{% trans "Start date" %} / {% trans "End date" %} | {% trans "Paid tickets per quota" %} | {% trans "Status" %} | |
---|---|---|---|---|---|
{{ e.name }}
{{ e.slug }} {% for k, v in e.meta_data.items %} {% if v %} · {{ k }}: {{ v }} {% endif %} {% endfor %} |
{% if not hide_orga %}{{ e.organizer }} | {% endif %}
{% if e.has_subevents %}
{{ e.min_from|default_if_none:""|date:"SHORT_DATETIME_FORMAT" }}
{% else %}
{{ e.get_short_date_from_display }}
{% endif %}
{% if e.has_subevents %}
{% trans "Series" %}
{% endif %}
{% if e.settings.show_date_to and e.date_to %}
– {% if e.has_subevents %} {{ e.max_fromto|default_if_none:e.max_from|default_if_none:e.max_to|default_if_none:""|date:"SHORT_DATETIME_FORMAT" }} {% else %} {{ e.get_short_date_to_display }} {% endif %} {% endif %} {% if e.settings.timezone != request.timezone %} {% endif %} |
{% for q in e.first_quotas|slice:":3" %} {% include "pretixcontrol/fragment_quota_box_paid.html" with quota=q %} {% endfor %} {% if e.first_quotas|length > 3 %} ··· {% 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 %} |