mirror of
https://github.com/pretix/pretix.git
synced 2026-09-14 16:24:43 +00:00
Show order level question answers on presale order info page
This commit is contained in:
@@ -346,6 +346,16 @@
|
|||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</dl>
|
</dl>
|
||||||
|
|
||||||
|
{% if order.answers.all %}
|
||||||
|
<hr>
|
||||||
|
<dl class="dl-horizontal">
|
||||||
|
{% for ans in order.answers.all %}
|
||||||
|
<dt>{{ ans.question.question }}</dt>
|
||||||
|
<dd>{% include "pretixpresale/event/fragment_question_answer.html" with request=request question=ans.question answer=ans %}</dd>
|
||||||
|
{% endfor %}
|
||||||
|
</dl>
|
||||||
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user