{% extends "pretixcontrol/event/base.html" %} {% load i18n %} {% load eventurl %} {% load bootstrap3 %} {% load static %} {% load escapejson %} {% load eventsignal %} {% block title %}{{ request.event.name }}{% endblock %} {% block content %}
{% blocktrans trimmed %} Only fully paid orders are counted. Orders paid in multiple payments are shown with the date of their last payment. {% endblocktrans %}
| {% trans "Name" %} | {% trans "Checked in" %} | {% if request.event.has_subevents %}{% trans "Date" context "subevent" %} | {% endif %}{% trans "Automated check-in" %} | {% trans "Products" %} | ||
|---|---|---|---|---|---|---|
| {{ cl.name }} |
{{ cl.checkin_count|default_if_none:"0" }} /
{{ cl.position_count|default_if_none:"0" }}
|
{% if request.event.has_subevents %}
{% if cl.subevent %}
{{ cl.subevent.name }} – {{ cl.subevent.get_date_range_display }} {{ cl.subevent.date_from|date:"TIME_FORMAT" }} | {% else %}{% trans "All" %} | {% endif %} {% endif %}{% for channel in cl.auto_checkin_sales_channels %} {% endfor %} |
{% if cl.all_products %}
{% trans "All" %}
{% else %}
|
{% if "can_change_event_settings" in request.eventpermset %} {% endif %} |
| {% trans "Name" %} | {% trans "Begin" %} | {% trans "Paid tickets per quota" %} | {% trans "Capacity left" %} |
|---|---|---|---|
|
{{ s.name }} #{{ s.pk }} |
{{ s.get_date_from_display }} {{ s.date_from|date:"l" }} |
{% for q in s.first_quotas|slice:":3" %} {% include "pretixcontrol/fragment_quota_box_paid.html" with quota=q %} {% endfor %} {% if s.first_quotas|length > 3 %} ··· {% endif %} | {% for q in s.first_quotas %} {% include "pretixcontrol/items/fragment_quota_availability.html" with availability=q.cached_avail closed=q.closed %} {% endfor %} |
|
{{ subevent.name }} #{{ subevent.pk }} |
{{ subevent.get_date_from_display }} {{ subevent.date_from|date:"l" }} |
{% for q in subevent.first_quotas|slice:":3" %} {% include "pretixcontrol/fragment_quota_box_paid.html" with quota=q %} {% endfor %} {% if subevent.first_quotas|length > 3 %} ··· {% endif %} | {% for q in subevent.first_quotas %} {% include "pretixcontrol/items/fragment_quota_availability.html" with availability=q.cached_avail closed=q.closed %} {% endfor %} |