{% extends "pretixpresale/event/base.html" %} {% load i18n %} {% block title %}{% trans "Presale" %}{% endblock %} {% 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 %} {% if not event.presale_is_running %}
{% if event.presale_has_ended %} {% blocktrans trimmed %} The presale period for this event is over. {% endblocktrans %} {% elif event.settings.presale_start_show_date %} {% blocktrans trimmed with date=event.presale_start|date time=event.presale_start|time %} The presale for this event will start on {{ date }} at {{ time }}. {% endblocktrans %} {% else %} {% blocktrans trimmed %} The presale for this event has not yet started. {% endblocktrans %} {% endif %}
{% endif %} {% if event.presale_is_running or event.settings.show_items_outside_presale_period %}
{% 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 %}
{% blocktrans trimmed with minprice=item.min_price|floatformat:2 currency=event.currency %} from {{ currency }} {{ minprice }} {% endblocktrans %}
{% 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 %} {% if event.presale_is_running %}
{% endif %}
{% endif %} {% endblock %}