summaryrefslogtreecommitdiffstats
path: root/templates/_formhelpers.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/_formhelpers.html')
-rw-r--r--templates/_formhelpers.html11
1 files changed, 0 insertions, 11 deletions
diff --git a/templates/_formhelpers.html b/templates/_formhelpers.html
deleted file mode 100644
index c78a09f..0000000
--- a/templates/_formhelpers.html
+++ /dev/null
@@ -1,11 +0,0 @@
- {% macro render_field(field) %}
- <p>
- <label>{{ field.label }}</label>
- {{ field(**kwargs)|safe }}
- {% if field.errors %}
- <span class="error">
- {% for error in field.errors %}{{ error }}{% endfor %}
- </span>
- {% endif %}
- </p>
-{% endmacro %}