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

{% trans "Test result" %}

{% trans "You are about to submit a test result for this person:" %}

{{ attendee.attendee_name }}

{% trans "Order code" %}
{{ attendee.order.code }}
{% trans "Barcode" %}
{{ attendee.secret }}
{% for a in attendee.answers.all %}
{{ a.question.question }}
{{ a.answer|linebreaksbr }}
{% endfor %}
{% csrf_token %}

 

{% include "pretixcontrol/pagination.html" %} {% endblock %}