{{ item.name }}
{% if item.actions %}
{% include "app/actions.html" with uuid=item.uuid target="model" actions=item.actions %}
{% endif %}
{% for name, item in item.data.items %}
{% if forloop.first %}
{% if item.type == 'fieldset-list' %}
{% for name, fieldset in item.data.items %}
{% include 'app/valueset/fieldset.html' with data=fieldset %}
{% endfor %}
{% else %}
{% include 'app/valueset/fieldset.html' with data=item %}
{% endif %}
{% endif %}
{% endfor %}