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

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

{% csrf_token %}
{% for form in forms %}

{% trans "Add-ons:" %} {{ form.item.name }}{% if form.variation %} – {{ form.variation }} {% endif %}

{% if form.pos.subevent %}

{{ form.pos.subevent.name }} · {{ form.pos.subevent.get_date_range_display_as_html }} {% if form.pos.event.settings.show_times %} {{ form.pos.subevent.date_from|date:"TIME_FORMAT" }} {% endif %}

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