{% extends "pretixcontrol/event/base.html" %} {% load i18n %} {% load bootstrap3 %} {% 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 %} {% bootstrap_field form.send_email layout='' %} {% if form.cancel_invoice %} {% bootstrap_field form.cancel_invoice layout='' %} {% endif %} {% if form.cancellation_fee %} {% bootstrap_field form.cancellation_fee layout='' %} {% endif %}
{% endblock %}