{% extends "admin/base_site.html" %} {% load i18n static admin_data_utils %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block coltype %}colM{% endblock %} {% block bodyclass %}{{ block.super }} app-{{ app_label }} change-list{% endblock %} {% if not is_popup %} {% block breadcrumbs %} {% endblock %} {% endif %} {% block content %}
{% csrf_token %}
{% if image %} {% endif %} {% for section in data %}
{% if section.name %}

{{ section.name }}

{% endif %} {% if section.description %}
{{ section.description|safe }}
{% endif %} {% for key, value in section.fields.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 %}
{% endfor %}
{% endblock %}