diff --git a/opentech/apply/funds/templates/funds/includes/submission_field.html b/opentech/apply/funds/templates/funds/includes/submission_field.html
deleted file mode 100644
index ae084fb7e3fa9748586133d584f5b3cb789d4dd6..0000000000000000000000000000000000000000
--- a/opentech/apply/funds/templates/funds/includes/submission_field.html
+++ /dev/null
@@ -1,17 +0,0 @@
-{% load bleach_tags %}
-{% for field in fields %}
-    <div>
-        <h5>{{ field.field.label }}</h5>
-        {% if field.field.choices %}
-        <div>
-            {% for value in field.value %}
-                {% if forloop.first %}<ul>{% endif %}
-                <li>{{ value }}</li>
-                {% if forloop.last %}</ul>{% endif %}
-            {% endfor %}
-        </div>
-        {% else %}
-            <div>{{ field.value|bleach }}</div>
-        {% endif %}
-    </div>
-{% endfor %}