{% extends "pretixcontrol/items/base.html" %} {% load i18n %} {% block title %}{% trans "Check-in lists" %}{% endblock %} {% block inside %}

{% trans "Check-in lists" %}

{% blocktrans trimmed %} You can create check-in lists that you can use e.g. at the entrance of your event to track who is coming and if they actually bought a ticket. You can do this process by printing out the list on paper, using this web interface or by using one of our mobile or desktop apps to automatically scan tickets. {% endblocktrans %}

{% blocktrans trimmed %} You can create multiple check-in lists to separate multiple parts of your event, for example if you have separate entries for multiple ticket types. Different check-in lists are completely independent: If a ticket shows up on two lists, it is valid once on every list. This might be useful if you run a festival with festival passes that allow access to every or multiple performances as well as tickets only valid for single performances. {% endblocktrans %}

{% if request.event.has_subevents %}

{% if request.event.has_subevents %} {% endif %}

{% endif %} {% if checkinlists|length == 0 %}

{% if request.GET.subevent %} {% trans "Your search did not match any check-in lists." %} {% else %} {% blocktrans trimmed %} You haven't created any check-in lists yet. {% endblocktrans %} {% endif %}

{% if "can_change_event_settings" in request.eventpermset %} {% trans "Create a new check-in list" %} {% endif %}
{% else %} {% if "can_change_event_settings" in request.eventpermset %}

{% trans "Create a new check-in list" %}

{% endif %}
{% if request.event.has_subevents %} {% endif %} {% for cl in checkinlists %} {% if request.event.has_subevents %} {% endif %} {% endfor %}
{% trans "Check-in lists" %} {% trans "Checked in" %}{% trans "Date" context "subevent" %}{% trans "Products" %}
{{ cl.name }}
{{ cl.checkin_count|default_if_none:"0" }} / {{ cl.position_count|default_if_none:"0" }}
{{ cl.subevent.name }} – {{ cl.subevent.get_date_range_display }} {% if cl.all_products %} {% trans "All" %} {% else %} {% endif %} {% if "can_change_event_settings" in request.eventpermset %} {% endif %}
{% endif %} {% include "pretixcontrol/pagination.html" %} {% endblock %}