{% 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" %}
{% for k, v in value.items %} {% if v|length > 40 %} {% else %} {% endif %}
{% endfor %}
{% elif value|get_type == "list" %}
{% for v in value %} {% if v|length > 40 %} {% else %} {% endif %}
{% endfor %}
{% else %}
{% if value|length > 40 %} {% else %} {% endif %}
{% endif %}
{% endfor %}
{% endfor %}
{% endblock %}