mirror of
https://github.com/pretix/pretix.git
synced 2026-05-06 15:24:02 +00:00
Tests
This commit is contained in:
@@ -633,7 +633,7 @@ class ConfirmStep(CartMixin, AsyncAction, TemplateFlowStep):
|
||||
return eventreverse(self.request.event, 'presale:event.order', kwargs={
|
||||
'order': order.code,
|
||||
'secret': order.secret,
|
||||
})
|
||||
}) + '?thanks=1'
|
||||
return eventreverse(self.request.event, 'presale:event.order.pay.complete', kwargs={
|
||||
'order': order.code,
|
||||
'secret': order.secret,
|
||||
|
||||
@@ -14,9 +14,15 @@
|
||||
{% if order.status != 'p' %}
|
||||
<p>
|
||||
{% trans "Your order has been placed successfully. See below for details." %}<br>
|
||||
<strong>
|
||||
{% trans "Please note that we still await your payment to complete the process." %}
|
||||
</strong>
|
||||
{% if 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>
|
||||
{% else %}
|
||||
<strong>
|
||||
{% trans "Please note that we still await your payment to complete the process." %}
|
||||
</strong>
|
||||
{% endif %}
|
||||
</p>
|
||||
{% elif order.total == 0 %}
|
||||
<p>{% trans "Your order has been processed successfully! See below for details." %}</p>
|
||||
|
||||
Reference in New Issue
Block a user