diff --git a/src/pretix/control/templates/pretixcontrol/attendees/index.html b/src/pretix/control/templates/pretixcontrol/attendees/index.html deleted file mode 100644 index 12fcd7ea2b..0000000000 --- a/src/pretix/control/templates/pretixcontrol/attendees/index.html +++ /dev/null @@ -1,78 +0,0 @@ -{% 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 %}