{% extends "pretixpresale/event/base.html" %} {% load i18n %} {% load bootstrap3 %} {% load rich_text %} {% 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 %}

{% csrf_token %} {% for position, addon_positions in formgroups.items %}

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

{% if position.subevent %}
    {{ position.subevent.name }} · {{ position.subevent.get_date_range_display_as_html }} {% if position.event.settings.show_times %} {{ position.subevent.date_from|date:"TIME_FORMAT" }} {% endif %}
{% endif %} {% for p in addon_positions %} {% if p.pk != position.pk %} {# Add-Ons #} + {{ p.item.name }}{% if p.variation %} – {{ p.variation.value }}{% endif %} {% endif %} {% if p.attendee_name %}
{{ p.attendee_name }}
{% endif %} {% bootstrap_form p.form layout="checkout" %} {% endfor %}
{% if position.addon_form %} {% include "pretixpresale/event/fragment_addon_choice.html" with form=position.addon_form %} {% endif %}
{% endfor %}
{% endblock %}