From 149f1ee8717f42806ea273fec9c987b655efa678 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Wed, 16 Jul 2025 14:51:11 +0200 Subject: [PATCH] Product list: Fix consistency issue (Z#23201046) (#5307) --- .../pretixpresale/event/fragment_product_list.html | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/pretix/presale/templates/pretixpresale/event/fragment_product_list.html b/src/pretix/presale/templates/pretixpresale/event/fragment_product_list.html index 9768683601..8b782e709c 100644 --- a/src/pretix/presale/templates/pretixpresale/event/fragment_product_list.html +++ b/src/pretix/presale/templates/pretixpresale/event/fragment_product_list.html @@ -72,9 +72,11 @@ {% endblocktrans %} - {% elif not item.min_price and not item.max_price and not item.mandatory_priced_addons %} - {% trans "free" context "price" %} - {% elif not item.mandatory_priced_addons %} + {% elif not item.min_price and not item.max_price %} + {% if not item.mandatory_priced_addons %} + {% trans "free" context "price" %} + {% endif %} + {% else %} {{ item.min_price|money:event.currency }} {% endif %}