{# SPDX-FileCopyrightText: 2015-2018 CERN. SPDX-License-Identifier: MIT #} {% macro render_field(field, icon="", placeholder='', autofocus=False) %} {%- if field.widget.input_type == 'hidden' %} {{ field() }} {%- else %}
{{ field.label }} {%- set extras = dict(autofocus="") if autofocus else dict() %} {{field(class_="form-control", placeholder=placeholder, **extras)}} {%- if icon %} {%- endif %} {%- if field.description %} {{ field.description }} {%- endif %} {%- if field.errors %} {%- endif %}
{%- endif %} {% endmacro %}