{% extends "xadmin/views/model_list.html" %} {% block toolbar_layouts %}{% endblock toolbar_layouts %} {% block results_grid_body %}{% endblock results_grid_body %} {% block results_grid %} {{ block.super }}
{% for obj in results %} {% block grid_item %}
{% if obj.thumbnail_img %} {{obj.thumbnail_img.label}} {% else %}

{% endif %} {% if obj.thumbnail_label %}

{{obj.thumbnail_label.label}}

{% endif %}
    {% for o in obj.cells %} {% if not o.thumbnail_hidden %}
  • {% if o.btns %}
    {% for b in o.btns %} {{b|safe}} {% endfor %}
    {% endif %} {% if o.field_label %} {{o.field_label}}: {% endif %} {% if o.menus %} {% else %} {{ o.label }} {% endif %}
  • {% endif %} {% endfor %}
{% endblock grid_item %} {% endfor %}
{% endblock results_grid %}