{% load i18n %} {% load eventurl %} {% if download_email_required %}

{% trans "Ticket download" %}



{% if event.settings.mail_attach_tickets %} {% trans "Please check your email account, we've sent you your tickets." %} {% else %} {% trans "Please check your email account, we've sent you an email." %} {% endif %}

{% if position_page %} {% blocktrans trimmed %} You can download your tickets right here as soon as the person who placed the order clicked the link in the email they received to confirm the email address is valid. {% endblocktrans %} {% elif not event.settings.mail_attach_tickets %} {% blocktrans trimmed %} If you click the link in our email, you will be able to download your tickets here. {% endblocktrans %} {% else %} {% blocktrans trimmed %} If the email has no attachment, click the link in our email and you will be able to download them from here. {% endblocktrans %} {% endif %}

{% elif can_download and download_buttons and order.count_positions %}
{% if cart.positions|length > 1 and can_download_multi %} {# never True on ticket page #} {% blocktrans trimmed %} Please have your ticket ready when entering the event. {% endblocktrans %} {% blocktrans trimmed %} Download your tickets here: {% endblocktrans %}

{% trans "Download all tickets at once:" %} {% for b in download_buttons %} {% if b.multi %}

{% csrf_token %}
{% endif %} {% endfor %}

{% elif tickets_with_download|length == 1 %} {% blocktrans trimmed %} Please have your ticket ready when entering the event. {% endblocktrans %} {% blocktrans trimmed %} Download your ticket here: {% endblocktrans %}

{% for b in download_buttons %}

{% csrf_token %}
{% endfor %}

{% else %} {% blocktrans trimmed %} Please have your ticket ready when entering the event. {% endblocktrans %} {% blocktrans trimmed %} Download your tickets using the buttons below. {% endblocktrans %} {% endif %}
{% elif not download_buttons and ticket_download_date %} {% if order.status == 'p' %}
{% blocktrans trimmed with date=ticket_download_date|date:"SHORT_DATE_FORMAT" %} You will be able to download your tickets here starting on {{ date }}. {% endblocktrans %}
{% endif %} {% endif %}