{% macro text_input(field, list='', css_classes='') -%}
{% if list %} {% endif %} {% if field.errors %} {% endif %} {% if field.help_text %}
{% endif %}
{% endmacro %} {% macro textarea_input(field) -%}
{% if field.errors %} {% endif %} {% if field.help_text %}
{{ field.help_text() }} {% endif %}
{% endmacro %} {% macro number_input(field, type='', step_size='0.01') -%}
{% if type %} {{ field.label }} in {{ type }} {% endif %} {% if field.errors %} {% endif %} {% if field.help_text %}
{{ field.help_text() }} {% endif %}
{% endmacro %} {% macro file_input(field, multiple=False) -%}
{% endmacro %} {% macro image_deletion_input(existing_images) -%}
{% for image in existing_images %}
{% endfor %}
{% endmacro %} {% macro checkbox_input(field) -%}
{% endmacro %} {% macro select_input(field, multiple=False) -%}
{% endmacro %} {% macro password_input(field, list='', css_classes='') -%}
{% if list %} {% endif %} {% if field.errors %} {% endif %} {% if field.help_text %}
{% endif %}
{% endmacro %} {% macro telephone_input(field, type='', step_size='0.01') -%}
{% if type %} {{ field.label }} in {{ type }} {% endif %} {% if field.errors %} {% endif %} {% if field.help_text %}
{{ field.help_text() }} {% endif %}
{% endmacro %}