From 009f1003757e9cf2e39d9ccb9065881b0d4e83fa Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Thu, 29 Sep 2022 10:24:51 +0200 Subject: [PATCH] Cart: Display included taxes in total sum from the start --- .../presale/templates/pretixpresale/event/fragment_cart.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/presale/templates/pretixpresale/event/fragment_cart.html b/src/pretix/presale/templates/pretixpresale/event/fragment_cart.html index 1d369f130e..8bff4b518a 100644 --- a/src/pretix/presale/templates/pretixpresale/event/fragment_cart.html +++ b/src/pretix/presale/templates/pretixpresale/event/fragment_cart.html @@ -400,7 +400,7 @@
{{ cart.total|money:event.currency }} - {% if not event.settings.display_net_prices and cart.tax_total and not editable %} + {% if not event.settings.display_net_prices and cart.tax_total %} {% blocktrans trimmed with tax_sum=cart.tax_total|money:event.currency %} incl. {{ tax_sum }} taxes