forked from CGM_Public/pretix_original
Order change: Emphasize warning on payment state (Z#23135268)
This commit is contained in:
@@ -142,10 +142,6 @@
|
|||||||
<td>
|
<td>
|
||||||
{% if new_pending_sum > 0 %}
|
{% if new_pending_sum > 0 %}
|
||||||
<strong>{% trans "You will need to pay" %}</strong>
|
<strong>{% trans "You will need to pay" %}</strong>
|
||||||
<br>
|
|
||||||
<span class="text-muted">
|
|
||||||
{% trans "Your entire order will be considered unpaid until you paid this difference." %}
|
|
||||||
</span>
|
|
||||||
{% else %}
|
{% else %}
|
||||||
<strong>{% trans "You will be refunded" %}</strong>
|
<strong>{% trans "You will be refunded" %}</strong>
|
||||||
<br>
|
<br>
|
||||||
@@ -184,6 +180,12 @@
|
|||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
{% if new_pending_sum > 0 and order.status == "p" %}
|
||||||
|
<div class="alert alert-warning">
|
||||||
|
<strong>{% trans "Your entire order will be considered unpaid until you paid this difference." %}</strong>
|
||||||
|
{% trans "You might not be able to use any of the tickets in your order until this payment has been received." %}
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
{% for k, l in request.POST.lists %}
|
{% for k, l in request.POST.lists %}
|
||||||
{% for v in l %}
|
{% for v in l %}
|
||||||
<input type="hidden" name="{{ k }}" value="{{ v }}">
|
<input type="hidden" name="{{ k }}" value="{{ v }}">
|
||||||
|
|||||||
Reference in New Issue
Block a user