{% extends "backoffice/layouts/default.html" %} {% load backoffice humanize i18n static %} {% block content %}
{% block title %}{% endblock title %}
{% include "backoffice/partials/search.html" %} {% if filter %} {% endif %} {% block actions %}{% endblock actions %}
{% if filter %} {% include "backoffice/partials/filters.html" %} {% endif %}
{% for field in list_display %} {% endfor %} {% for obj in page_obj %} {% for field in list_display %} {% if forloop.first %} {% else %} {% endif %} {% endfor %} {% endfor %}
{{ page_obj.object_list|verbose_name:field }}
{{ obj|getattr:field }} {{ obj|getattr:field }}
{% if page_obj.has_next or page_obj.has_previous %} {% include "backoffice/partials/pagination.html" %} {% endif %} {% if not page_obj %}
{% trans "No results found" %}
{% endif %}
{% endblock content %} {% block script %} {{ block.super }} {{ filter.form.media }} {% if filter %} {% endif %} {% endblock script %}