{% extends "pretixcontrol/base.html" %} {% load i18n %} {% load eventurl %} {% load urlreplace %} {% load bootstrap3 %} {% block title %}{% trans "Order search" %}{% endblock %} {% block content %}

{% trans "Order search" %}

{% bootstrap_field filter_form.query layout='inline' %}
{% bootstrap_field filter_form.status layout='inline' %}
{% bootstrap_field filter_form.organizer layout='inline' %}
{% for o in orders %} {% empty %} {% endfor %}
{% trans "Order code" %} {% trans "Event" %} {% trans "User" %} {% trans "Order date" %} {% trans "Order total" %} {% trans "Positions" %} {% trans "Status" %}
{{ o.event.slug|upper }}-{{ o.code }} {{ o.event.name }} {{ o.email }} {% if o.invoice_address.name %}
{{ o.invoice_address.name }} {% endif %}
{{ o.datetime|date:"SHORT_DATETIME_FORMAT" }} {{ o.total|floatformat:2 }} {{ o.event.currency }} {{ o.pcnt }} {% include "pretixcontrol/orders/fragment_order_status.html" with order=o %}
{% trans "We couldn't find any orders that you have access to and that match your search query." %}
{% include "pretixcontrol/pagination.html" %} {% endblock %}