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

{% trans "Before we continue, we need you to answer some questions." %}

{% blocktrans trimmed %} You need to fill all fields that are marked with * to continue. {% endblocktrans %}

{% csrf_token %}

{% trans "Contact information" %}

{% bootstrap_form contact_form layout="horizontal" %} {% if not invoice_address_asked and event.settings.invoice_name_required %} {% bootstrap_form invoice_form layout="horizontal" %} {% endif %}
{% if invoice_address_asked %}

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

{% if event.settings.invoice_address_explanation_text %}
{{ event.settings.invoice_address_explanation_text|rich_text }}
{% endif %} {% bootstrap_form invoice_form layout="horizontal" %}
{% endif %} {% for pos, forms in formgroups %}

{{ pos.item.name }} {% if pos.variation %} – {{ pos.variation }} {% endif %} {% if forloop.counter > 1 %} {% if event.settings.checkout_show_copy_answers_button %} {% endif %} {% else %} {% endif %}

{% if event.settings.attendee_data_explanation_text and pos.item.admission %} {{ event.settings.attendee_data_explanation_text|rich_text }} {% endif %} {% if pos.seat %}
{{ pos.seat }}
{% endif %} {% if pos.addons.all %}
    {% for a in pos.addons.all %}
  • {{ a.item.name }}{% if a.variation %} – {{ a.variation.value }}{% endif %}
  • {% endfor %}
{% endif %} {% if pos.subevent %}
    {{ pos.subevent.name }} · {{ pos.subevent.get_date_range_display }} {% if pos.event.settings.show_times %} {{ pos.subevent.date_from|date:"TIME_FORMAT" }} {% endif %}
{% endif %} {% for form in forms %} {% if form.pos.item != pos.item %} {# Add-Ons #} {% if form.show_copy_answers_to_addon_button and event.settings.checkout_show_copy_answers_button %} {% endif %} + {{ form.pos.item.name }}{% if form.pos.variation %} – {{ form.pos.variation.value }}{% endif %} {% endif %}
{% bootstrap_form form layout="checkout" %}
{% endfor %}
{% endfor %}
{% endblock %}