{{ item.name }}
{% if item.actions %}
{% include "dashboard/actions.html" with uuid=item.uuid target="model" actions=item.actions %}
{% endif %}
{% if item.template %}
{% include item.template with data=item.data %}
{% else %}
{% for item in item.data.values %}
{% if forloop.first %}
{% include 'valueset/fieldset.html' with data=item %}
{% endif %}
{% endfor %}
{% endif %}