diff --git a/src/pretix/control/templates/pretixcontrol/orders/index.html b/src/pretix/control/templates/pretixcontrol/orders/index.html index 661504e5b6..e8ea05e3d5 100644 --- a/src/pretix/control/templates/pretixcontrol/orders/index.html +++ b/src/pretix/control/templates/pretixcontrol/orders/index.html @@ -204,13 +204,21 @@ {% endblocktrans %} - {% if sums.s|default_if_none:"none" != "none" %} - {{ sums.s|money:request.event.currency }} + {% if not filter_form.filtered %} + + {% if sums.s|default_if_none:"none" != "none" %} + {{ sums.s|money:request.event.currency }} + {% endif %} {% endif %} - {% if sums.pc %} - {{ sums.pc }} + {% if not filter_form.filtered %} + + {% if sums.pc %} + {{ sums.pc }} + {% endif %} {% endif %}