{% extends "pretixpresale/event/base.html" %} {% load i18n eventurl bootstrap3 %} {% block title %}{% trans "Waiting list" %}{% endblock %} {% block content %}

{% trans "Add me to the waiting list" %}

{% csrf_token %}
{% if subevent %}
{% endif %} {% bootstrap_form form layout="checkout" %}

{% blocktrans trimmed with hours=event.settings.waiting_list_hours %} If tickets become available again, we will inform the first persons on the waiting list. If we notify you, you'll have {{ hours }} hours time to buy a ticket until we assign it to the next person on the list. {% endblocktrans %}

{% if event.settings.waiting_list_limit_per_user > 1 %} {% blocktrans trimmed %} Note that you will only receive one ticket. If you need multiple tickets, you need to add yourself to the waiting list multiple times. There is no guarantee that you will receive a certain number of tickets. {% endblocktrans %} {% else %} {% blocktrans trimmed %} Note that you will only receive one ticket. If you need multiple tickets, you need to add yourself to the waiting list multiple times with different email addresses. There is no guarantee that you will receive a certain number of tickets. {% endblocktrans %} {% endif %}

{% blocktrans trimmed %} You will not receive a confirmation email after you have been added to the waiting list. We will only contact you once a spot opens up. {% endblocktrans %}

{% endblock %}