From 8fa82bdbca1559bbb1f8382cedf18ec8aa0a0e87 Mon Sep 17 00:00:00 2001 From: Todd Dembrey <todd.dembrey@torchbox.com> Date: Mon, 19 Feb 2018 12:13:38 +0000 Subject: [PATCH] Remove the old field template --- .../funds/includes/submission_field.html | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 opentech/apply/funds/templates/funds/includes/submission_field.html 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 ae084fb7e..000000000 --- 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 %} -- GitLab