mirror of
https://github.com/pretix/pretix.git
synced 2026-05-07 15:34:02 +00:00
Order list: Remove sums that cause lots of confusion (#3315)
This commit is contained in:
@@ -204,13 +204,21 @@
|
|||||||
{% endblocktrans %}
|
{% endblocktrans %}
|
||||||
</th>
|
</th>
|
||||||
<th class="text-right flip">
|
<th class="text-right flip">
|
||||||
{% if sums.s|default_if_none:"none" != "none" %}
|
{% if not filter_form.filtered %}
|
||||||
{{ sums.s|money:request.event.currency }}
|
<span class="fa fa-info-circle text-muted" data-toggle="tooltip"
|
||||||
|
title='{% trans 'This sum includes canceled orders. For your ticket revenue, look at the "order overview".' %}'></span>
|
||||||
|
{% if sums.s|default_if_none:"none" != "none" %}
|
||||||
|
{{ sums.s|money:request.event.currency }}
|
||||||
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</th>
|
</th>
|
||||||
<th class="text-right flip">
|
<th class="text-right flip">
|
||||||
{% if sums.pc %}
|
{% if not filter_form.filtered %}
|
||||||
{{ sums.pc }}
|
<span class="fa fa-info-circle text-muted" data-toggle="tooltip"
|
||||||
|
title='{% trans 'This sum includes canceled orders. For your ticket revenue, look at the "order overview".' %}'></span>
|
||||||
|
{% if sums.pc %}
|
||||||
|
{{ sums.pc }}
|
||||||
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</th>
|
</th>
|
||||||
<th></th>
|
<th></th>
|
||||||
|
|||||||
Reference in New Issue
Block a user