From efb94265b272513026644c542d6538e2ca541ee7 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Fri, 16 Jan 2026 15:13:45 +0100 Subject: [PATCH] Cart: Use price before rounding as custom price for plus button (#5780) --- .../templates/pretixpresale/event/fragment_cart.html | 4 ++-- src/pretix/presale/views/__init__.py | 6 ++++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/pretix/presale/templates/pretixpresale/event/fragment_cart.html b/src/pretix/presale/templates/pretixpresale/event/fragment_cart.html index 361dcca763..8b09753c27 100644 --- a/src/pretix/presale/templates/pretixpresale/event/fragment_cart.html +++ b/src/pretix/presale/templates/pretixpresale/event/fragment_cart.html @@ -313,12 +313,12 @@ + value="{% if event.settings.display_net_prices %}{{ line.price_for_input_net }}{% else %}{{ line.price_for_input }}{% endif %}" /> {% else %} + value="{% if event.settings.display_net_prices %}{{ line.price_for_input_net }}{% else %}{{ line.price_for_input }}{% endif %}" /> {% endif %}