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

{% blocktrans trimmed with code=order.code %} Cancel order: {{ code }} {% endblocktrans %}

{% blocktrans trimmed %} Do you really want to cancel this order? You cannot revert this action. {% endblocktrans %} {% trans "This will invalidate all of your tickets." %}

{% if can_auto_refund %}

{% blocktrans trimmed with amount=refund_amount|money:request.event.currency %} The refund amount of {{ 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 amount=refund_amount|money:request.event.currency %} With to the payment method you used, the refund amount of {{ 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 %}
{% csrf_token %}
{% endblock %}