{% extends "backoffice/sidebar.html" %} {% load backoffice %} {% load humanize %} {% load i18n %} {% load static %} {% block content %}
{% block title %}{% endblock %}
{% include "backoffice/partials/search.html" %}
{% block actions %} {% endblock actions %} {# Deprecated, keep export block for compatibility #} {% block export %} {% endblock export %}

{% if page_obj %}
{% 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 }}
{% include "backoffice/partials/pagination.html" %}
{% else %}
{% trans "No results found." %}
{% endif %}
{% if filter %}
{% include "backoffice/partials/filters.html" %}
{% endif %}
{% endblock content %} {% block footer %} {{ block.super }} {% if filter %} {{ filter.form.media }} {% endif %} {% endblock %}