{% load i18n %} {% load bootstrap3 %} {% load rich_text %} {% for position, addon_positions in formgroups.items %}

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

{% if position.subevent %}
    {{ position.subevent.name }} · {{ position.subevent.get_date_range_display_with_times_as_html }}
{% 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 hide_prices=hide_prices %} {% endif %}
{% endfor %}