Improve order confirmation message for free orders requiring approval

This commit is contained in:
Raphael Michel
2021-07-09 11:34:36 +02:00
parent 7f9368c415
commit c6a3280d69

View File

@@ -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>