{% extends "pretixcontrol/event/base.html" %} {% load i18n %} {% load eventurl %} {% load urlreplace %} {% load bootstrap3 %} {% block title %} {% blocktrans with name=checkinlist.name %}Check-in list: {{ name }}{% endblocktrans %} {% endblock %} {% block content %}

{% blocktrans with name=checkinlist.name %}Check-in list: {{ name }}{% endblocktrans %} {% if 'can_change_event_settings' in request.eventpermset %} {% trans "Edit list configuration" %} {% endif %} {% trans "PDF" %} {% trans "CSV" %}

{% trans "Filter" %}

{% bootstrap_field filter_form.user %}
{% bootstrap_field filter_form.status %}
{% bootstrap_field filter_form.item %}
{% if filter_form.subevent %}
{% bootstrap_field filter_form.subevent %}
{% bootstrap_field filter_form.subevent_from %}
{% bootstrap_field filter_form.subevent_until %}
{% endif %}
{% if entries|length == 0 %}

{% blocktrans trimmed %} No attendee record was found. {% endblocktrans %}

{% else %}
{% for field in filter_form %} {{ field.as_hidden }} {% endfor %} {% csrf_token %}
{% if request.event.has_subevents and not checkinlist.subevent %} {% endif %} {% if seats %} {% endif %} {% if page_obj.paginator.num_pages > 1 %} {% endif %} {% for e in entries %} {% if request.event.has_subevents and not checkinlist.subevent %} {% endif %} {% if seats %} {% endif %} {% endfor %}
{% trans "Order code" %} {% trans "Item" %} {% trans "Date" context "subevents" %} {% trans "Seat" %} {% trans "Email" %} {% trans "Name" %} {% trans "Ticket code" %} {% trans "Status" %} {% trans "Timestamp" %}
{% if "can_change_orders" in request.eventpermset %} {% endif %} {{ e.order.code }} {% if e.order.status == "n" %} {% trans "unpaid" %} {% endif %} {% if e.order.testmode %} {% trans "TEST MODE" %} {% endif %} {{ e.item }}{% if e.variation %} – {{ e.variation }}{% endif %} {{ e.subevent.name }} – {{ e.subevent.get_date_range_display }} {{ e.subevent.date_from|date:"TIME_FORMAT" }} {{ e.seat|default_if_none:"" }} {% if e.addon_to and e.addon_to.attendee_email %} {{ e.addon_to.attendee_email }} {% elif e.attendee_email %} {{ e.attendee_email }} {% else %} {{ e.order.email|default_if_none:"" }} {% endif %} {% if e.addon_to and not e.attendee_name %} {{ e.addon_to.attendee_name }} {% elif e.attendee_name %} {{ e.attendee_name }} {% endif %} {{ e.secret|slice:":10" }}… {% if not e.last_entry %} {% trans "Not checked in" %} {% else %} {% if e.last_exit and e.last_exit_aware > e.last_entry_aware %} {% trans "Checked in but left" %} {% else %} {% trans "Checked in" %} {% if e.auto_checked_in %} {% endif %} {% endif %} {% endif %} {% if e.last_entry %} {{ e.last_entry_aware|date:"SHORT_DATETIME_FORMAT" }} {% endif %} {% if e.last_exit %}
{% blocktrans trimmed with date=e.last_exit_aware|date:"SHORT_DATETIME_FORMAT" %} Exit: {{ date }} {% endblocktrans %}
{% endif %}
{% if "can_change_orders" in request.eventpermset %} {% endif %}
{% include "pretixcontrol/pagination.html" %} {% endif %} {% endblock %}