{% extends "pretixpresale/event/base.html" %} {% load i18n %} {% load bootstrap3 %} {% load eventsignal %} {% load eventurl %} {% block title %}{% trans "Order details" %}{% endblock %} {% block content %} {% if "thanks" in request.GET or "paid" in request.GET %}
{% trans "Your order has been placed successfully. See below for details." %}
{% elif order.total == 0 %}{% trans "Your order has been processed successfully! See below for details." %}
{% else %}{% trans "We successfully received your payment. See below for details." %}
{% endif %}{% blocktrans trimmed %} Please bookmark or save the link to this exact page if you want to download your ticket or change your details later. We also sent you an email containing the link to the address you specified. {% endblocktrans %}
{% blocktrans trimmed %} Please obtain your ticket below. 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:"SHORT_DATE_FORMAT" %} You will be able to download your tickets here starting on {{ date }}. {% endblocktrans %} {% endif %}