mirror of
https://github.com/pretix/pretix.git
synced 2026-05-08 15:44:02 +00:00
Change "Paid" to "confirmed" for free orders
This commit is contained in:
@@ -3,12 +3,16 @@
|
|||||||
{% if order.status == "n" %}
|
{% if order.status == "n" %}
|
||||||
{% if order.require_approval %}
|
{% if order.require_approval %}
|
||||||
<span class="label label-warning {{ class }}">{% trans "Approval pending" %}</span>
|
<span class="label label-warning {{ class }}">{% trans "Approval pending" %}</span>
|
||||||
|
{% elif order.total == 0 %}
|
||||||
|
<span class="label label-warning {{ class }}">{% trans "Confirmation pending" context "order state" %}</span>
|
||||||
{% else %}
|
{% else %}
|
||||||
<span class="label label-warning {{ class }}">{% trans "Payment pending" %}</span>
|
<span class="label label-warning {{ class }}">{% trans "Payment pending" %}</span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% elif order.status == "p" %}
|
{% elif order.status == "p" %}
|
||||||
{% if order.count_positions == 0 %}
|
{% if order.count_positions == 0 %}
|
||||||
<span class="label label-info {{ class }}">{% trans "Canceled (paid fee)" %}</span>
|
<span class="label label-info {{ class }}">{% trans "Canceled (paid fee)" %}</span>
|
||||||
|
{% elif order.total == 0 %}
|
||||||
|
<span class="label label-success {{ class }}">{% trans "Confirmed" context "order state" %}</span>
|
||||||
{% else %}
|
{% else %}
|
||||||
<span class="label label-success {{ class }}">{% trans "Paid" %}</span>
|
<span class="label label-success {{ class }}">{% trans "Paid" %}</span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|||||||
Reference in New Issue
Block a user