{% extends "pretixpresale/event/checkout_base.html" %} {% load i18n %} {% load bootstrap3 %} {% 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 %}
{% bootstrap_form contact_form layout="horizontal" %}
{% if event.settings.invoice_address_asked %} {% endif %} {% for pos, forms in formgroups %}
{% if pos.addons.all %}
    {% for a in pos.addons.all %}
  • {{ a.item.name }}{% if a.variation %} – {{ a.variation.value }}{% endif %}
  • {% endfor %}
{% endif %} {% for form in forms %} {% if form.pos.item != pos.item %} {# Add-Ons #} + {{ form.pos.item }} {% endif %} {% bootstrap_form form layout="horizontal" %} {% endfor %}
{% endfor %}
{% endblock %}