diff --git a/src/pretix/presale/templates/pretixpresale/event/fragment_cart.html b/src/pretix/presale/templates/pretixpresale/event/fragment_cart.html
index 66b37c3cad..b9e0cefba7 100644
--- a/src/pretix/presale/templates/pretixpresale/event/fragment_cart.html
+++ b/src/pretix/presale/templates/pretixpresale/event/fragment_cart.html
@@ -27,7 +27,17 @@
{% endif %}
{% for q in line.questions %}
{{ q.question }}
-
{% if q.answer %}{{ q.answer|linebreaksbr }}{% else %}{% trans "not answered" %}{% endif %}
+
+ {% if q.answer %}
+ {% if q.answer.file %}
+ {{ q.answer.file_link }}
+ {% else %}
+ {{ q.answer|linebreaksbr }}
+ {% endif %}
+ {% else %}
+ {% trans "not answered" %}
+ {% endif %}
+
{% endfor %}
{% for q in line.additional_answers %}
{{ q.question }}
diff --git a/src/pretix/presale/templates/pretixpresale/event/order_modify.html b/src/pretix/presale/templates/pretixpresale/event/order_modify.html
index a91f5fb217..5954cac4a5 100644
--- a/src/pretix/presale/templates/pretixpresale/event/order_modify.html
+++ b/src/pretix/presale/templates/pretixpresale/event/order_modify.html
@@ -8,7 +8,7 @@
Modify order: {{ code }}
{% endblocktrans %}
-