{% 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 %}

{% csrf_token %}

{% blocktrans trimmed %} Please choose which parts of your order you want to cancel: {% endblocktrans %}

{% for pos in cancellable_positions %}
{% endfor %} {% if order.status == "p" and order.total != 0 %}

{% blocktrans trimmed %} Before your purchase is cancelled, you will be shown the refund amount and asked to confirm the cancellation. {% endblocktrans %}

{% endif %}
{% if order.status == "p" and order.total != 0 %} {% else %} {% endif %}
{% endblock %}