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

{% trans "Some of the products in your cart can only be purchased if there is an active membership on your account." %}

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

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

{% if form.position.seat %}
{{ form.position.seat }}
{% endif %} {% if form.position.addons.all %}
    {% for a in form.position.addons.all %}
  • {{ a.item.name }}{% if a.variation %} – {{ a.variation.value }}{% endif %}
  • {% endfor %}
{% endif %} {% if form.position.subevent %}
    {{ form.position.subevent.name }} · {{ form.position.subevent.get_date_range_display_with_times_as_html }}
{% endif %} {% if form.is_empty %}
{% trans "This product can only be purchased when you are logged in with a customer account that includes a valid membership or authorization for this type of product." %}
{% bootstrap_form form layout="checkout" %}
{% else %} {% bootstrap_form form layout="checkout" %} {% endif %}
{% endfor %}
{% endblock %}