{% extends "pretixpresale/event/base.html" %} {% load i18n %} {% load bootstrap3 %} {% block title %}{% trans "Order details" %}{% endblock %} {% block content %}

{% blocktrans trimmed with code=order.code %} Your order: {{ code }} {% endblocktrans %} {% include "pretixpresale/event/fragment_order_status.html" with order=order class="pull-right" %}

{% if order.status == "n" %}

{% trans "Payment" %}

{{ payment }} {% blocktrans trimmed with date=order.expires|date %} Please complete your payment before {{ date }} {% endblocktrans %}
{% endif %} {% if order.status == 'p' and event.settings.ticket_download %}

{% trans "Ticket download" %}

{% if can_download %}

{% blocktrans trimmed %} Please use the buttons below to obtain your ticket. Please have your ticket ready when entering the event. {% endblocktrans %}

{% for b in download_buttons %} {{ b.text }} {% endfor %} {% else %} {% blocktrans trimmed with date=event.settings.ticket_download_date|date %} You will be able to download your tickets here on {{ date }}. {% endblocktrans %} {% endif %}
{% endif %}
{% if order.can_modify_answers %} {% endif %}

{% trans "Ordered items" %}

{% include "pretixpresale/event/fragment_cart.html" with cart=cart event=request.event editable=False %}
{% if order.status == "n" %}

{% trans "Cancel order" %}

{% endif %} {% if order.status == "p" and payment %}

{% trans "Payment" %}

{{ payment }}
{% endif %} {% endblock %}