{{ item.name }}
{% if item.actions %}
{% include "dashboard/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 fieldset in item.data.values %}
{% include 'valueset/fieldset.html' with data=fieldset %}
{% endfor %}
{% else %}
{% include 'valueset/fieldset.html' with data=item %}
{% endif %}
{% endif %}
{% endfor %}