{% extends "pretixcontrol/event/base.html" %} {% load i18n %} {% load bootstrap3 %} {% block title %} {% trans "Change contact information" %} {% endblock %} {% block content %}

{% trans "Change order information" %} {% blocktrans trimmed with order=order.code %} Back to order {{ order }} {% endblocktrans %}

{% csrf_token %}
{% if invoice_address_asked or order.invoice_address or request.event.settings.invoice_name_required %}

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

{% bootstrap_form invoice_form layout="horizontal" %}
{% endif %} {% for pos, forms in formgroups %}

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

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

{% trans "Other operations" %}

{% bootstrap_form_errors other_form %} {% if other_form.custom_error %}
{{ other_form.custom_error }}
{% endif %} {% bootstrap_field other_form.notify layout="control" %}
{% trans "Cancel" %}
{% endblock %}