From b0b8f32cb9e3e568b39ec78039a9683672056ba8 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Thu, 2 Jul 2020 19:32:11 +0200 Subject: [PATCH] Always show net total in backend --- .../templates/pretixcontrol/order/index.html | 34 +++++++++---------- 1 file changed, 16 insertions(+), 18 deletions(-) diff --git a/src/pretix/control/templates/pretixcontrol/order/index.html b/src/pretix/control/templates/pretixcontrol/order/index.html index aeec5e4f3e..8209433a6a 100644 --- a/src/pretix/control/templates/pretixcontrol/order/index.html +++ b/src/pretix/control/templates/pretixcontrol/order/index.html @@ -525,26 +525,24 @@
{% endfor %} - {% if event.settings.display_net_prices and items.net_total %} -
-
- {% trans "Net total" %} -
-
- {{ items.net_total|money:event.currency }} -
-
+
+
+ {% trans "Net total" %}
-
-
- {% trans "Taxes" %} -
-
- {{ items.tax_total|money:event.currency }} -
-
+
+ {{ items.net_total|money:event.currency }}
- {% endif %} +
+
+
+
+ {% trans "Taxes" %} +
+
+ {{ items.tax_total|money:event.currency }} +
+
+
{% trans "Total" %}