mirror of
https://github.com/pretix/pretix.git
synced 2026-05-06 15:24:02 +00:00
Improve order confirmation message for free orders requiring approval
This commit is contained in:
@@ -30,7 +30,11 @@
|
||||
{% if order.status != 'p' %}
|
||||
<p>
|
||||
{% trans "Your order has been placed successfully. See below for details." %}<br>
|
||||
{% if order.require_approval %}
|
||||
{% if order.require_approval and order.total == 0 %}
|
||||
<strong>
|
||||
{% trans "Please note that we still await approval by the event organizer before your order is confirmed." %}
|
||||
</strong>
|
||||
{% elif order.require_approval %}
|
||||
<strong>
|
||||
{% trans "Please note that we still await approval by the event organizer before you can pay and complete this order." %}
|
||||
</strong>
|
||||
|
||||
Reference in New Issue
Block a user