{% extends "pretixpresale/event/base.html" %} {% load i18n %} {% load bootstrap3 %} {% load rich_text %} {% block title %}{% trans "Modify order" %}{% endblock %} {% block content %}

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

{% csrf_token %}
{% if invoice_address_asked or event.settings.invoice_name_required %} {% if invoice_address_asked and not request.GET.generate_invoice == "true" and not event.settings.invoice_reissue_after_modify %}
{% blocktrans trimmed %} Modifying your invoice address will not automatically generate a new invoice. Please contact us if you need a new invoice. {% endblocktrans %}
{% endif %}

{% if invoice_address_asked %} {% trans "Invoice information" %}{% if not event.settings.invoice_address_required %} {% trans "(optional)" %} {% endif %} {% else %} {% trans "Contact information" %} {% endif %}

{% if event.settings.invoice_address_explanation_text %}
{{ event.settings.invoice_address_explanation_text|rich_text }}
{% endif %} {% bootstrap_form invoice_form layout="horizontal" %}
{% endif %} {% for pos, forms in formgroups %}

{{ pos.item.name }}{% if pos.variation %} – {{ pos.variation }} {% endif %}

{% for form in forms %} {% if form.pos.item != pos.item %} {# Add-Ons #} + {{ form.pos.item.name }} {% endif %} {% bootstrap_form form layout="checkout" %} {% endfor %}
{% endfor %}
{% endblock %}