Order change: Emphasize warning on payment state (Z#23135268)

This commit is contained in:
Raphael Michel
2023-11-02 14:23:33 +01:00
parent eaa134089e
commit 4c51c28d7a

View File

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