{% 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_as_html }} {% if form.position.event.settings.show_times %} {{ form.position.subevent.date_from|date:"TIME_FORMAT" }} {% endif %}
{% endif %} {% if form.is_empty %}
{% trans "Your account does not include an active membership that allows you to buy this product." %} {% trans "You will not be able to continue." %}
{% bootstrap_form form layout="checkout" %}
{% else %} {% bootstrap_form form layout="checkout" %} {% endif %}
{% endfor %}
{% endblock %}