{% if item.type == 'fieldset-group' %}
{% include 'app/fieldset-group.html' with item=item %}
{% endif %}
{% if item.type == 'fieldset-list' %}
{% include 'app/fieldset-list.html' with item=item %}
{% endif %}
{% if item.type == 'fieldset' %}
{% include 'app/fieldset.html' with fieldset=item %}
{% endif %}
{% if item.type == 'queryset' %}
{% include 'app/fieldset.html' with fieldset=item %}
{% endif %}
{% if item.type == 'statistics' %}
{% include 'app/fieldset.html' with fieldset=item %}
{% endif %}
{% endfor %}
{% if data.append %}
{% for name, item in data.append.items %}
{% include 'app/fieldset.html' with fieldset=item compact=True %}
{% endfor %}