{% 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 %}
{{ ev.get_date_range_display }}
{% if event.settings.show_times %}
{% blocktrans trimmed with time=ev.date_from|date:"TIME_FORMAT" %}
Begin: {{ time }}
{% endblocktrans %}
{% if event.settings.show_date_to and ev.date_to %}
{% blocktrans trimmed with time=ev.date_to|date:"TIME_FORMAT" %}
End: {{ time }}
{% endblocktrans %}
{% endif %}
{% endif %}
{% if ev.date_admission %}
{% if ev.date_admission|date:"SHORT_DATE_FORMAT" == ev.date_from|date:"SHORT_DATE_FORMAT" %}
{% blocktrans trimmed with time=ev.date_admission|date:"TIME_FORMAT" %}
Admission: {{ time }}
{% endblocktrans %}
{% else %}
{% blocktrans trimmed with datetime=ev.date_admission|date:"SHORT_DATETIME_FORMAT" %}
Admission: {{ datetime }}
{% endblocktrans %}
{% endif %}
{% endif %}
{% if subevent %}
{% else %}
{% endif %}
{% trans "Add to Calendar" %}
{% blocktrans trimmed %} You entered a voucher code that allows you to buy one of the following products at the specified price: {% endblocktrans %}
{% if event.presale_is_running or event.settings.show_items_outside_presale_period %} {% endif %} {% endblock %}