You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
293 B
HTML
12 lines
293 B
HTML
7 years ago
|
{% 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 %}
|