{% extends "backoffice/layouts/default.html" %} {% load backoffice %} {% load humanize %} {% load i18n %} {% load static %} {% block content %}
{% block title %}{% endblock title %}
{% include "backoffice/partials/search.html" %} {% block actions %} {% endblock actions %}

{% 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 }}
{% if page_obj.has_next or page_obj.has_previous %} {% include "backoffice/partials/pagination.html" %} {% endif %} {% 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 %}