diff --git a/src/pretix/presale/templates/pretixpresale/event/checkout_addons.html b/src/pretix/presale/templates/pretixpresale/event/checkout_addons.html index d4263fb5c6..171a0e3979 100644 --- a/src/pretix/presale/templates/pretixpresale/event/checkout_addons.html +++ b/src/pretix/presale/templates/pretixpresale/event/checkout_addons.html @@ -60,7 +60,7 @@
- {% include "pretixpresale/event/fragment_product_list.html" with items_by_category=cross_selling_data ev=event %} + {% include "pretixpresale/event/fragment_product_list.html" with items_by_category=cross_selling_data ev=event is_cross_selling=True %}
{% endif %} 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 d9b281b2ed..0ca5515b4f 100644 --- a/src/pretix/presale/templates/pretixpresale/event/fragment_product_list.html +++ b/src/pretix/presale/templates/pretixpresale/event/fragment_product_list.html @@ -8,7 +8,11 @@ {% for tup in items_by_category %}{% with category=tup.0 items=tup.1 form_prefix=tup.2 %} {% if category %}
-

{{ category.name }}

+

{{ category.name }} + {% if is_cross_selling and category.cross_selling_condition == 'discounts' %} + {% trans "Your order qualifies for a discount" %} + {% endif %} +

{% if category.description %}
{{ category.description|localize|rich_text }}
{% endif %}