{% for key, value in items.items %}
{% if value|get_type == "dict" %}
{% include 'admin_data_views/dict_item.html' with label=key items=value only %}
{% elif value|get_type == "list" %}
{% include 'admin_data_views/list_item.html' with label=key items=value only %}
{% else %}
{% include 'admin_data_views/item.html' with value=value only %}