{% load djadmin_tags %}
{% if 'obj' in item.col %} {% include 'admin/djadmin_components/object_details.html' with object_details=item.col %} {% elif 'rows' in item.col %} {% include 'admin/djadmin_components/object_list.html' with object_list=item.col %} {% elif item.col|is_list %} {% include 'admin/djadmin_components/_auto_row_col.html' with item=item.col %} {% elif item.col is None %}   {% elif 'partial' in item.col and 'with_args' in item.col.keys %} {% include_dynamic_with item.col.partial item.col.with_args %} {% elif 'partial' in item.col %} {% include item.col.partial %} {% elif 'preview_file' in item.col %} {% include 'admin/djadmin_components/preview_file.html' with file=item.col.preview_file %} {% else %} {{ item.col }} {% endif %}