From 0871482681874bcaf74c8155d7f86f42132a125f Mon Sep 17 00:00:00 2001 From: Till Kemper <51061932+kempert@users.noreply.github.com> Date: Wed, 7 Feb 2024 09:48:01 +0100 Subject: [PATCH] Add product variation to addon-label when modifying order (#3864) * Added Variation of Product by Additional Products at Postion Name by Additional Products the Variant should missing. added it with the prefix - * Update src/pretix/presale/templates/pretixpresale/event/order_modify.html --------- Co-authored-by: Raphael Michel --- .../presale/templates/pretixpresale/event/order_modify.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/pretix/presale/templates/pretixpresale/event/order_modify.html b/src/pretix/presale/templates/pretixpresale/event/order_modify.html index e4b35405c..cb0887fcf 100644 --- a/src/pretix/presale/templates/pretixpresale/event/order_modify.html +++ b/src/pretix/presale/templates/pretixpresale/event/order_modify.html @@ -61,7 +61,9 @@ {% for form in forms %} {% if form.pos.item != pos.item %} {# Add-Ons #} - + {{ form.pos.item.name }} + + {{ form.pos.item.name }}{% if form.pos.variation %} + – {{ form.pos.variation.value }} + {% endif %} {% endif %} {% bootstrap_form form layout="checkout" %} {% endfor %}