{% extends "pretixpresale/event/base.html" %} {% load i18n %} {% block title %}{% trans "Your orders" %}{% endblock %} {% block content %}
| {% trans "Order code" %} | {% trans "Date" %} | {% trans "Total" %} | {% trans "Status" %} | {% for order in orders %} |
|---|---|---|---|---|
| {{ order.code }} | {{ order.datetime|date }} | {{ event.currency }} {{ order.total|floatformat:2 }} | {% include "pretixpresale/event/fragment_order_status.html" with order=order %} | {% trans "View details" %} |
| {% trans "You did not yet place any orders." %} | ||||