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

{% trans "Cancel order" %}

{% blocktrans trimmed %} Do you really want to cancel this order? You cannot revert this action. {% endblocktrans %}

{% if order.payment_refund_sum > 0 %}

{% blocktrans trimmed %} This will not automatically transfer the money back, but you will be offered options to refund the payment afterwards. {% endblocktrans %}

{% endif %}
{% csrf_token %} {% bootstrap_form_errors form %} {% if form.cancellation_fee %} {% if fee %} {% with fee|money:request.event.currency as f %}

{% blocktrans trimmed with fee=""|add:f|add:""|safe %} The configured cancellation fee for a self-service cancellation would be {{ fee }} for this order, but for a cancellation performed by you, you need to set the cancellation fee here: {% endblocktrans %}

{% endwith %} {% endif %} {% bootstrap_field form.cancellation_fee layout='' %} {% endif %} {% bootstrap_field form.send_email layout='' %} {% bootstrap_field form.comment layout='' %} {% if form.cancel_invoice %} {% bootstrap_field form.cancel_invoice layout='' %} {% endif %}
{% endblock %}