{% extends "pretixpresale/event/checkout_base.html" %} {% load i18n %} {% load bootstrap3 %} {% load rich_text %} {% load l10n %} {% load money %} {% load thumb %} {% block inner %} {% if forms %}

{% trans "For some of the products in your cart, you can choose additional options before you continue." %}

{% elif incomplete %}
{% trans "A product in your cart is only sold in combination with add-on products that are not available. Please contact the event organizer." %}
{% endif %}
{% csrf_token %}
{% for form in forms %}

{% trans "Additional options for" %} {{ form.item.name }}{% if form.variation %} – {{ form.variation }} {% endif %}

{% if form.pos.seat %}

{{ form.pos.seat }}

{% endif %} {% if form.pos.subevent %}

{{ form.pos.subevent.name }} · {{ form.pos.subevent.get_date_range_display_with_times_as_html }}

{% endif %} {% include "pretixpresale/event/fragment_addon_choice.html" with form=form %}
{% endfor %}
{% if cross_selling_data %} {% if forms %}

{% trans "More recommendations" %}

{% else %}

{% trans "Our recommendations" %}

{% endif %}
{% include "pretixpresale/event/fragment_product_list.html" with items_by_category=cross_selling_data ev=event headline_level=4 %}
{% if forms %}
{% else %} {% endif %} {% endif %}
{% endblock %}