{% extends "pretixcontrol/event/base.html" %} {% load i18n %} {% load bootstrap3 %} {% block title %} {% blocktrans trimmed with code=order.code %} Change order: {{ code }} {% endblocktrans %} {% endblock %} {% block content %}

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

{% blocktrans trimmed %} You can use this tool to change the ordered products or to partially cancel the order. Please keep in mind that changing an order can have several implications, e.g. the payment method fee might change or additional questions can be added to the order that need to be answered by the user. {% endblocktrans %}

{% blocktrans trimmed %} The user will receive a notification about the change but in the case of new required questions, the user will not be forced to answer them. You cannot use this form to add something to the order, please create a second order instead. {% endblocktrans %}

{% blocktrans trimmed %} If an invoice is attached to the order, a cancellation will be created together with a new invoice. {% endblocktrans %}

{% blocktrans trimmed %} Please use this tool carefully. Changes you make here are not reversible. In most cases it is easier to cancel the order completely and create a new one. {% endblocktrans %}
{% csrf_token %} {% for position in positions %}

#{{ position.positionid }} – {{ position.item.name }} {% if position.variation %} – {{ position.variation }} {% endif %} {% if position.addon_to %} – {% blocktrans trimmed with posid=position.addon_to.positionid %} Add-On to position #{{ posid }} {% endblocktrans %} {% endif %}

{% bootstrap_form_errors position.form %} {% if position.custom_error %}
{{ position.custom_error }}
{% endif %}
{% endfor %}
{% trans "Cancel" %}
{% endblock %}