Skip to content

Instantly share code, notes, and snippets.

@M0r13n
Created April 11, 2019 17:23
Show Gist options
  • Save M0r13n/078977ed13c4ff20d4e6b18efa0a432d to your computer and use it in GitHub Desktop.
Save M0r13n/078977ed13c4ff20d4e6b18efa0a432d to your computer and use it in GitHub Desktop.
WTF-Forms - Render Form Field Errors
{% macro render_errors(field) %}
{% for error in field.errors %}
<div class="alert alert-error text-danger">
{{ error }}
</div>
{% endfor %}
{% endmacro %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment