forgot to render errors

This commit is contained in:
Rodney Ewing 2013-07-11 16:21:35 -07:00
parent a937ea9efd
commit 643f07af06

View File

@ -94,6 +94,11 @@
{{ field }}</input>
{{ field.description|safe }}
</label>
{%- if field.errors -%}
{% for error in field.errors %}
<p class="form_field_error">{{ error }}</p>
{% endfor %}
{% endif %}
</div>
{% endmacro %}