{% extends "pretixpresale/event/base.html" %} {% load i18n %} {% load l10n %} {% load money %} {% load eventurl %} {% load eventsignal %} {% load thumb %} {% load rich_text %} {% block title %}{% trans "Voucher redemption" %}{% endblock %} {% block content %} {% if show_cart %} {% include "pretixpresale/event/fragment_cart_box.html" with open=request.GET.show_cart %} {% endif %}
{{ ev.get_date_range_display_as_html }}
{% if event.settings.show_times %}
{% with time_human=ev.date_from|date:"TIME_FORMAT" time_24=ev.date_from|time:"H:i" %}
{% blocktrans trimmed with time='"|safe %}
Begin: {{ time }}
{% endblocktrans %}
{% endwith %}
{% if event.settings.show_date_to and ev.date_to %}
{% with time_human=ev.date_to|date:"TIME_FORMAT" time_24=ev.date_to|time:"H:i" %}
{% blocktrans trimmed with time='"|safe %}
End: {{ time }}
{% endblocktrans %}
{% endwith %}
{% endif %}
{% endif %}
{% if ev.date_admission %}
{% if ev.date_admission|date:"SHORT_DATE_FORMAT" == ev.date_from|date:"SHORT_DATE_FORMAT" %}
{% with time_human=ev.date_admission|date:"TIME_FORMAT" time_24=ev.date_admission|time:"H:i" %}
{% blocktrans trimmed with time='"|safe %}
Admission: {{ time }}
{% endblocktrans %}
{% endwith %}
{% else %}
{% with datetime_human=ev.date_admission|date:"SHORT_DATETIME_FORMAT" datetime_iso=ev.date_admission|time:"Y-m-d H:i" %}
{% blocktrans trimmed with datetime='"|safe %}
Admission: {{ datetime }}
{% endblocktrans %}
{% endwith %}
{% endif %}
{% endif %}
{% if subevent %}
{% else %}
{% endif %}
{% trans "Add to Calendar" %}
{% if options == 0 and not seating_available %} {% if request.event.has_subevents and not voucher.subevent %} {% blocktrans trimmed %} For the selected date, there are currently no products available that can be bought with this voucher. Please try a different date or a different voucher. {% endblocktrans %} {% else %} {% blocktrans trimmed %} There are currently no products available that can be bought with this voucher. {% endblocktrans %} {% endif %} {% else %} {% blocktrans trimmed %} You entered a voucher code that allows you to buy one of the following products at the specified price: {% endblocktrans %} {% endif %}
{% if event.presale_is_running or event.settings.show_items_outside_presale_period %} {% endif %} {% endblock %}