From 64c692908400affc2b5c4f55b82aa95de456720f Mon Sep 17 00:00:00 2001 From: Mira Weller Date: Wed, 12 Aug 2026 13:57:06 +0200 Subject: [PATCH] Show order level question answers on presale order info page --- .../presale/templates/pretixpresale/event/order.html | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/pretix/presale/templates/pretixpresale/event/order.html b/src/pretix/presale/templates/pretixpresale/event/order.html index 8c68e4eced..2ee4b89a5b 100644 --- a/src/pretix/presale/templates/pretixpresale/event/order.html +++ b/src/pretix/presale/templates/pretixpresale/event/order.html @@ -346,6 +346,16 @@ {% endfor %} {% endif %} + + {% if order.answers.all %} +
+
+ {% for ans in order.answers.all %} +
{{ ans.question.question }}
+
{% include "pretixpresale/event/fragment_question_answer.html" with request=request question=ans.question answer=ans %}
+ {% endfor %} +
+ {% endif %}