{% extends "django_backend/base_dialog.html" %} {% load i18n django_backend_tags %} {% block content %} {% block head %}
{% block head-buttons %} {% if backend|has_add_permission:user %} {% blocktrans with verbose_name=backend.verbose_name %}Add new {{ verbose_name }}{% endblocktrans %} {% endif %} {% endblock %}

{{ backend.verbose_name_plural }}

{% endblock %} {% with inline=True %} {% block content-filters %} {% if filter_form %} {% include "django_backend/_filter_form.html" with filter_form=filter_form %} {% endif %} {% endblock %} {% block content-list %}
{% csrf_token %} {% if object_list %} {% for column in backend.select_columns.values %} {% endfor %} {% for object in object_list %} {% for column in backend.select_columns.values %} {% endfor %} {% endfor %}
{{ column.name }}
{% render column %}
{% if page_obj.has_other_pages %}
{% include "django_backend/paginator/paginator.html" %} {% endif %} {% else %}

{% blocktrans with verbose_name_plural=backend.verbose_name_plural %}No {{ verbose_name_plural }} found.{% endblocktrans %}

{% endif %}
{% endblock %} {% endwith %} {% endblock %}