{% extends "pretixcontrol/event/settings_base.html" %} {% load i18n %} {% load bootstrap3 %} {% load urlreplace %} {% block inside %}

{% trans "Test results" %}

{% trans "Filter" %}

{% bootstrap_field filter_form.state %}
{% bootstrap_field filter_form.query %}
{% for op in attendees %} {% endfor %}
{% trans "Ticket" %} {% trans "Check-in" %} {% trans "Name" %}
{{ op.order.code }}-{{ op.positionid }} {% if op.last_checkin %} {{ op.last_checkin|date:"SHORT_DATETIME_FORMAT" }}
{{ op.last_checkin|timesince }} {% endif %}
{{ op.attendee_name }} {% if op.attendee_email %}
{{ op.attendee_email }} {% else %}
{{ op.order.email|default_if_none:"" }} {% endif %}
{% trans "Process test result" %}
{% include "pretixcontrol/pagination.html" %} {% endblock %}