diff --git a/src/pretix/presale/templates/pretixpresale/event/waitinglist.html b/src/pretix/presale/templates/pretixpresale/event/waitinglist.html index adeb16ab9f..e0989ab57f 100644 --- a/src/pretix/presale/templates/pretixpresale/event/waitinglist.html +++ b/src/pretix/presale/templates/pretixpresale/event/waitinglist.html @@ -24,9 +24,15 @@ {% endblocktrans %}
- {% blocktrans trimmed with hours=event.settings.waiting_list_hours %} - 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 %} + {% 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 %}