diff --git a/opentech/apply/stream_forms/templates/stream_forms/render_multi_file_field.html b/opentech/apply/stream_forms/templates/stream_forms/render_multi_file_field.html
index f87d83862237d390580f4e93104c7aa2768b544b..e8b182af424dc5737cc66fc27184483d652678ed 100644
--- a/opentech/apply/stream_forms/templates/stream_forms/render_multi_file_field.html
+++ b/opentech/apply/stream_forms/templates/stream_forms/render_multi_file_field.html
@@ -2,7 +2,11 @@
 {% block data_display %}
     <div class="wrapper">
     {% for file in data %}
-        {% include "stream_forms/includes/file_field.html" with file=file %}
+        {% if data.name %}
+            {% include "stream_forms/includes/file_field.html" with file=file %}
+        {% else %}
+            {{ file }}
+        {% endif %}
     {% endfor %}
     </div>
 {% endblock %}