{% extends "pretixcontrol/event/base.html" %} {% load i18n %} {% load eventurl %} {% block title %}{% trans "Attendees" %}{% endblock %} {% block content %}

{% trans "Attendees" %}

{% if not filtered and attendees|length == 0 %}

{% blocktrans trimmed %} Nobody ordered a ticket yet. {% endblocktrans %}

{% if not request.event.live %} {% trans "Take your shop live" %} {% else %} {% trans "Go to the ticket shop" %} {% endif %}
{% else %}

{% include "pretixcontrol/pagination.html" %}
{% for a in attendees %} {% endfor %}
{% trans "Order code" %} {% trans "Product" %} {% trans "Attendee name" %} {% trans "Order date" %} {% trans "Status" %}
{{ a.order.code }} {{ a.item.name }} {{ a.attendee_name|default:"" }} {{ a.order.datetime|date:"SHORT_DATETIME_FORMAT" }} {% include "pretixcontrol/orders/fragment_order_status.html" with order=a.order %}
{% include "pretixcontrol/pagination.html" %} {% endif %} {% endblock %}