{% 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 %}

{% trans "Ticket download" %}

{% if cart.positions|length > 1 and can_download_multi %} {# never True on ticket page #}
{% for b in download_buttons %} {% if b.multi %}
{% csrf_token %}
{% endif %} {% endfor %}

{% blocktrans trimmed %} Please have your ticket ready when entering the event. {% endblocktrans %}

{% elif tickets_with_download|length == 1 %}
{% for b in download_buttons %}
{% csrf_token %}
{% endfor %}

{% blocktrans trimmed %} Please have your ticket ready when entering the event. {% endblocktrans %}

{% 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 can_download and plugins_allow_ticket_download 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 %}