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

{% trans "Order search" %}

{% trans "Filter" %}

{% bootstrap_field filter_form.query %}
{% bootstrap_field filter_form.status %}
{% bootstrap_field filter_form.organizer %}
{% bootstrap_field filter_form.provider %}
{% for mf in meta_fields %}
{% bootstrap_field mf %}
{% endfor %}
{% for o in orders %} {% empty %} {% endfor %}
{% trans "Order code" %} {% trans "Event" %} {% trans "User" %} {% trans "Order date" %} {% trans "Order total" %} {% trans "Status" %}
{{ o.event.slug|upper }}-{{ o.code }} {% if o.testmode %} {% trans "TEST MODE" %} {% endif %} {% if o.custom_followup_due %} {% blocktrans with date=o.custom_followup_at|date:"SHORT_DATE_FORMAT" context "followup" %}TODO {{ date }}{% endblocktrans %} {% elif o.custom_followup_at %} {% blocktrans with date=o.custom_followup_at|date:"SHORT_DATE_FORMAT" context "followup" %}TODO {{ date }}{% endblocktrans %} {% endif %} {{ o.event.name }} {{ o.email|default_if_none:"" }} {% if o.invoice_address.name %}
{{ o.invoice_address.name }} {% endif %}
{{ o.datetime|date:"SHORT_DATETIME_FORMAT" }} {% if o.has_cancellation_request %} {% trans "CANCELLATION REQUESTED" %} {% endif %} {% if o.has_external_refund or o.has_pending_refund %} {% trans "REFUND PENDING" %} {% elif o.has_pending_refund %} {% trans "REFUND PENDING" %} {% endif %} {% if o.is_overpaid %} {% trans "OVERPAID" %} {% elif o.is_underpaid %} {% trans "UNDERPAID" %} {% elif o.is_pending_with_full_payment %} {% trans "FULLY PAID" %} {% endif %} {{ o.total|money:o.event.currency }} {% 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_huge.html" %} {% endblock %}