Add macro
This commit is contained in:
19
templates/helpers/_forms.html
Normal file
19
templates/helpers/_forms.html
Normal file
@ -0,0 +1,19 @@
|
||||
{% macro generate_fields(form) -%}
|
||||
{% for field in form %}
|
||||
{% if field.type != 'CSRFTokenField' %}
|
||||
<div class="form-group{%if field.errors %} has-error{% endif %}">
|
||||
{{ field.label }}
|
||||
{% if field.type in ('StringField', 'PasswordField') %}
|
||||
{{ field(class='form-control') }}
|
||||
{% else %}
|
||||
{{ field() }}
|
||||
{% endif %}
|
||||
{% for error in field.errors %}
|
||||
<span class="help-block">{{ error }}</span>
|
||||
{% endfor %}
|
||||
</div>
|
||||
{% else %}
|
||||
{{ field() }}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{%- endmacro %}
|
Reference in New Issue
Block a user