{% extends "pretixpresale/event/base.html" %} {% load i18n %} {% load money %} {% load eventurl %} {% load l10n %} {% load rich_text %} {% block title %}{% trans "Cancel order" %}{% endblock %} {% block content %}

{% if request.event.settings.cancel_allow_user_paid_require_approval %} {% blocktrans trimmed with code=order.code %} Request cancellation: {{ code }} {% endblocktrans %} {% else %} {% blocktrans trimmed with code=order.code %} Cancel order: {{ code }} {% endblocktrans %} {% endif %}

{% if request.event.settings.cancel_allow_user_paid_require_approval %}

{% blocktrans trimmed %} You can request the cancellation of your order on this page. The event organizer will then decide on your request. If they approve, your order will be canceled and all tickets will be invalidated. {% endblocktrans %}

{% else %}

{% blocktrans trimmed %} If you cancel this order, all tickets will be invalidated and you can no longer use them. You cannot revert this action. {% endblocktrans %}

{% endif %} {% if request.event.settings.cancel_allow_user_paid_adjust_fees %}

{% if cancel_fee %} {% blocktrans trimmed with fee=order.user_cancel_fee|money:request.event.currency %} If you want, you can request a refund for the full amount minus a cancellation fee of {{ fee }}. {% endblocktrans %} {% else %} {% blocktrans trimmed with fee=order.user_cancel_fee|money:request.event.currency %} If you want, you can request a full refund. {% endblocktrans %} {% endif %}

{{ request.event.settings.cancel_allow_user_paid_adjust_fees_explanation|rich_text }}

Enter how much we can keep:
{% else %}

{% trans "Refund amount:" %} {{ refund_amount|money:request.event.currency }}

{% endif %} {% if refund_amount %} {% 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" %}
{% if can_auto_refund %}

{% blocktrans trimmed %} The refund amount will automatically be sent back to your original payment method. Depending on the payment method, please allow for up to two weeks before this appears on your statement. {% endblocktrans %}

{% else %}

{% blocktrans trimmed %} With the payment method you used, the refund amount can not be sent back to you automatically. Instead, the event organizer will need to initiate the transfer manually. Please be patient as this might take a bit longer. {% endblocktrans %}

{% endif %} {% else %} {% if can_auto_refund %}

{% blocktrans trimmed %} The refund amount will automatically be sent back to your original payment method. Depending on the payment method, please allow for up to two weeks before this appears on your statement. {% endblocktrans %}

{% else %}

{% blocktrans trimmed %} With the payment method you used, the refund amount can not be sent back to you automatically. Instead, the event organizer will need to initiate the transfer manually. Please be patient as this might take a bit longer. {% endblocktrans %}

{% endif %} {% endif %} {% endif %} {% csrf_token %}
{% endblock %}