{% extends "pretixpresale/event/base.html" %} {% load i18n %} {% load bootstrap3 %} {% load eventsignal %} {% load money %} {% load expiresformat %} {% 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." %}
{% if order.require_approval %}
{% trans "Please note that we still await approval by the event organizer before you can pay and complete this order." %}
{% else %}
{% trans "Please note that we still await your payment to complete the process." %}
{% endif %}
{% 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 access your order later. We also sent you an email containing the link to the address you specified. {% endblocktrans %}
{% blocktrans trimmed %}
Please save the following link if you want to access your order later. We
also sent you an email containing the link to the address you specified.
{% endblocktrans %}
{{ url }}
{% blocktrans trimmed %} If you want to make changes to the products you bought, you can click on the button to change your order. {% endblocktrans %}
{% trans "Change order" %}{% if request.event.settings.cancel_allow_user_paid_require_approval %} {% blocktrans trimmed %} You can request to cancel this order, but you will not receive a refund. {% endblocktrans %} {% else %} {% blocktrans trimmed %} You can cancel this order, but you will not receive a refund. {% endblocktrans %} {% endif %} {% trans "This will invalidate all tickets in this order." %}
{% elif order.user_cancel_fee %}{% if request.event.settings.cancel_allow_user_paid_require_approval %} {% blocktrans trimmed with fee=order.user_cancel_fee|money:request.event.currency %} You can request to cancel this order. If your request is approved, a cancellation fee of {{ fee }} will be kept and you will receive a refund of the remainder. {% endblocktrans %} {% else %} {% blocktrans trimmed with fee=order.user_cancel_fee|money:request.event.currency %} You can cancel this order. In this case, a cancellation fee of {{ fee }} will be kept and you will receive a refund of the remainder. {% endblocktrans %} {% endif %} {% if request.event.settings.cancel_allow_user_paid_refund_as_giftcard == "force" %} {% trans "The refund will be issued in form of a gift card that you can use for further purchases." %} {% elif request.event.settings.cancel_allow_user_paid_refund_as_giftcard == "option" %} {% trans "The refund can be issued to your original payment method or as a gift card." %} {% else %} {% trans "The refund will be issued to your original payment method." %} {% endif %} {% trans "This will invalidate all tickets in this order." %}
{% else %}{% if request.event.settings.cancel_allow_user_paid_require_approval %} {% blocktrans trimmed %} You can request to cancel this order. If your request is approved, you get a full refund. {% endblocktrans %} {% else %} {% blocktrans trimmed %} You can cancel this order and receive a full refund. {% endblocktrans %} {% endif %} {% if request.event.settings.cancel_allow_user_paid_refund_as_giftcard == "force" %} {% trans "The refund will be issued in form of a gift card that you can use for further purchases." %} {% elif request.event.settings.cancel_allow_user_paid_refund_as_giftcard == "option" %} {% trans "The refund can be issued to your original payment method or as a gift card." %} {% else %} {% trans "The refund will be issued to your original payment method." %} {% endif %} {% trans "This will invalidate all tickets in this order." %}
{% endif %} {% trans "Cancel order" %} {% else %}{% blocktrans trimmed %} You can cancel this order using the following button. {% endblocktrans %} {% trans "This will invalidate all tickets in this order." %}
{% trans "Cancel order" %} {% endif %}