add render_field macro to layout.html

This commit is contained in:
Joachim Lusiardi 2016-04-17 15:06:54 +02:00
parent 8c8803874e
commit 6f218e591f
1 changed files with 19 additions and 0 deletions

View File

@ -4,6 +4,25 @@
<li><a href='{{ url_for('get_manual') }}'>Manual</a></li> <li><a href='{{ url_for('get_manual') }}'>Manual</a></li>
{%- endmacro %} {%- endmacro %}
{% macro render_field(field) %}
<div class="form-group">
<label class="col-sm-2 control-label">
{{ field.label }}
</label>
<div class="col-sm-10">
{{ field(**kwargs)|safe }}
{% if field.errors %}
<ul class=errors>
{% for error in field.errors %}
<li>{{ error }}</li>
{% endfor %}
</ul>
{% endif %}
</div>
</div>
{% endmacro %}
<!doctype html> <!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang=""> <![endif]--> <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang=""> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang=""> <![endif]--> <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang=""> <![endif]-->