{% extends "backoffice/sidebar.html" %} {% load backoffice %} {% load humanize %} {% load i18n %} {% load static %} {% block content %}
{% block title %}

{% trans "Total" %}: {{ paginator.count|intcomma }}

{% endblock %}
{% include "backoffice/partials/search.html" %}
{% block export %} {% endblock export %}
{% 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" %}
{% if filter %}
{% include "backoffice/partials/filters.html" %}
{% endif %}
{% endblock content %} {% block footer %} {{ block.super }} {% if filter %} {{ filter.form.media }} {% endif %} {% endblock %}