{% extends "pretixcontrol/event/base.html" %} {% load i18n %} {% block title %}{% trans "Attendees" %}{% endblock %} {% block content %}
| {% 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 %} |