{% extends "pretixcontrol/event/base.html" %} {% load i18n %} {% load money %} {% load bootstrap3 %} {% block title %}{% trans "Modify orders" %}{% endblock %} {% block content %}

{% trans "Modify orders" %}

{% csrf_token %}
{% blocktrans trimmed with label=label allowed=allowed.count total=total %} The operation {{ label }} can be applied to {{ allowed }} of the selected {{ total }} orders. {% endblocktrans %}
{% if allowed %}
{% for o in allowed|slice:":50" %} {% endfor %} {% if allowed.count > 50 %} {% endif %}
{% trans "Order code" %} {% trans "User" %} {% trans "Order date" %} {% trans "Order total" %} {% trans "Status" %}
{{ o.code }} {% if o.testmode %} {% trans "TEST MODE" %} {% endif %} {{ o.email|default_if_none:"" }} {% if o.invoice_address.name %}
{{ o.invoice_address.name }} {% endif %}
{{ o.datetime|date:"SHORT_DATETIME_FORMAT" }} {{ o.total|money:request.event.currency }} {% include "pretixcontrol/orders/fragment_order_status.html" with order=o %}

{% blocktrans trimmed %} Do you want to continue? {% endblocktrans %}

{% blocktrans trimmed %} This operation cannot be reversed. {% endblocktrans %}
{% for k, l in request.POST.lists %} {% if "bulkactionform" not in k %} {% for v in l %} {% endfor %} {% endif %} {% endfor %} {% bootstrap_form form layout="control" %} {% endif %}
{% trans "Cancel" %} {% if allowed %} {% endif %}
{% endblock %}