{% extends "pretixcontrol/event/base.html" %} {% load eventurl %} {% load urlreplace %} {% load money %} {% load bootstrap3 %} {% load compress %} {% load static %} {% load i18n %} {% block title %}{% trans "Tickets" %}{% endblock %} {% block content %}

{% trans "Tickets in offline sales batch" %}

{% trans "This batch was created at " %} {% for obj in spsbatchs %} {% if forloop.last %} {{ obj.batchdate|date:"SHORT_DATETIME_FORMAT" }} {% endif %} {% endfor %} .
{% csrf_token %}
{% for o in spsbatchs %} {% endfor %}
{% trans "Order Code" %} {% trans "Product" %} {% trans "Price" %} {% trans "Ticket Secret" %} {% trans "Last Print Date" %} {% trans "Status" %}
{% if o.status == "p" %} {% endif %} {% if o.status == "c" %} {% endif %} {{ o.code }} {% if o.testmode %} {% trans "TEST MODE" %} {% endif %} {{ o.product }} {{ o.total|money:request.event.currency }} {{ o.secret }} {{ o.lastprintdate }} {% if o.status == "p" %} Paid {% endif %} {% if o.status == "c" %} Canceled {% endif %}
{% compress js %} {% endcompress %} {% include "pretixcontrol/pagination_huge.html" %} {% endblock %}