{% extends "djadmin/base_action.html" %} {% block action_content %}
{% if layout_items %} {# Render layout items #} {% for item in layout_items %} {% if item.type == 'fieldset' %}
{% if item.legend %}{{ item.legend }}{% endif %} {% if item.description %}

{{ item.description }}

{% endif %} {% for field_item in item.items %} {% include "djadmin/actions/_detail_item.html" with item=field_item %} {% endfor %}
{% elif item.type == 'row' %}
{% for field_item in item.items %} {% include "djadmin/actions/_detail_item.html" with item=field_item %} {% endfor %}
{% elif item.type == 'field' %} {% include "djadmin/actions/_detail_item.html" with item=item %} {% elif item.type == 'collection' %}

{{ item.legend }}

{% if item.items %} {% else %}

No items.

{% endif %}
{% endif %} {% endfor %} {% else %} {# Fallback if no layout #}

{{ object }}

{% endif %}
{% endblock %}