Skip to content

Instantly share code, notes, and snippets.

@sunu
Created December 17, 2012 06:24
Show Gist options
  • Save sunu/4316183 to your computer and use it in GitHub Desktop.
Save sunu/4316183 to your computer and use it in GitHub Desktop.
Flask: Wtform helper
{% macro render_field(field) %}
<dt>{{ field.label }}
<dd>{{ field(**kwargs)|safe }}
{% if field.errors %}
<ul class=errors>
{% for error in field.errors %}
<li>{{ error }}</li>
{% endfor %}
</ul>
{% endif %}
</dd>
{% endmacro %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment