{% extends "pretixpresale/organizers/customer_base.html" %} {% load i18n %} {% load eventurl %} {% load urlreplace %} {% load money %} {% load bootstrap3 %} {% block title %}{% trans "Your account" %}{% endblock %} {% block inner %}

{% trans "Orders" %} ({{ page_obj.paginator.count }})

{% if orders %}
    {% for o in orders %}
  1. {% trans "Order" %}
    {{ o.code }} {% if o.customer_id != customer.pk %} {% endif %} {% include "pretixpresale/event/fragment_order_status.html" with order=o event=o.event %}
    {% if o.testmode and False %}
    {% trans "TEST MODE" %}
    {% endif %}
    {% trans "Order total" %}
    {{ o.total|money:o.event.currency }}
    {% trans "Positions" %}
    {% blocktranslate count counter=o.count_positions|default_if_none:0 %}{{ counter }} item{% plural %}{{ counter }} items{% endblocktranslate %}
    {% trans "Event" %}
    {{ o.event }} {% if not o.event.has_subevents and o.event.settings.show_dates_on_frontpage %}
    {{ o.event.get_date_range_display }} {% endif %}
    {% trans "Actions" %}
    {% trans "Details" %}
  2. {% endfor %}
{% else %}

{% trans "You don’t have any orders in your account yet." %}

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