{% extends "pretixpresale/event/base.html" %} {% load i18n %} {% block content %} {% if cart.positions %}

{% trans "Your cart" %}

{% include "pretixpresale/event/fragment_cart.html" with cart=cart event=request.event editable=True %}
{% if cart.minutes_left > 0 %} {% blocktrans trimmed with minutes=cart.minutes_left %} The items in your cart are reserved for you for {{ minutes }} minutes. {% endblocktrans %} {% else %} {% trans "The items in your cart are no longer reserved for you." %} {% endif %}
{% endif %}
{% csrf_token %} {% for tup in items_by_category %}
{% if tup.0 %}

{{ tup.0.name }}

{% endif %} {% for item in tup.1 %} {% if item.has_variations %}
{{ item.name }} {% if item.short_description %}

{{ item.short_description }}

{% endif %}
{% for var in item.available_variations %}
{{ var }}
{{ event.currency }} {{ var.price|floatformat:2 }} {% if item.tax_rate %}
{% blocktrans trimmed with rate=item.tax_rate %} incl. {{ rate }}% taxes {% endblocktrans %} {% endif %}
{% if var.cached_availability.0 == 100 %}
{% else %} {% include "pretixpresale/event/fragment_availability.html" with avail=var.cached_availability.0 %} {% endif %}
{% endfor %} {% else %}
{{ item.name }} {% if item.short_description %}

{{ item.short_description }}

{% endif %}
{{ event.currency }} {{ item.price }} {% if item.tax_rate %}
{% blocktrans trimmed with rate=item.tax_rate %} incl. {{ rate }}% taxes {% endblocktrans %} {% endif %}
{% if item.cached_availability.0 == 100 %}
{% else %} {% include "pretixpresale/event/fragment_availability.html" with avail=item.cached_availability.0 %} {% endif %}
{% endif %} {% endfor %}
{% endfor %}
{% endblock %}