{% load i18n static admin_data_utils %} {% if label != "" %} {% endif %}
{% 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 %}
{% endif %}
{% endfor %}