{% from "macros.html" import render_field %} {% block content_title %}{{ title }}{% endblock %} {% block content_description %}{{ description }}{% endblock %} {% block content %}
{{ form.hidden_tag() }} {% set disabled_fields = [] %} {% set exclude_fields = [] %} {% for field in form.get_static_fields() %} {{ render_field(field, disabled_fields, exclude_fields) }} {% endfor %} {% if form.get_dynamic_fields is defined %} {% for collection_name, fields in form.get_dynamic_fields().items() %} {% if fields|length > 0 %}

{{ collection_name }}

{% endif %} {% for field in fields %} {{ render_field(field, disabled_fields, exclude_fields) }} {% endfor %} {% endfor %} {% endif %}
{% if enable_reset_defaults %} {% endif %}
{% if enable_reset_defaults %} {% endif %} {% endblock %} {% block content_footer %} {% endblock %}