Ensure non-IndexView BaseListingView subclasses use the correct base templates

Now that the listing_results.html template supports rendering the "There
are x matches" message, we can enforce the consistency between the view
class and the template. Previously there were BaseListingView subclasses
(that are not IndexView subclasses) that used the index_results.html
template just to get that message when filtering.
pull/12236/head
Sage Abdullah 2024-08-16 11:18:30 +01:00
rodzic e302c62ef2
commit f155546f65
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: EB1A33CC51CC0217
3 zmienionych plików z 1 dodań i 3 usunięć

Wyświetl plik

@ -1 +0,0 @@
{% extends "wagtailadmin/generic/index_results.html" %}

Wyświetl plik

@ -198,7 +198,6 @@ class LogEntryUserColumn(UserColumn):
class HistoryView(PermissionCheckedMixin, BaseObjectMixin, BaseListingView):
any_permission_required = ["add", "change", "delete"]
page_title = gettext_lazy("History")
results_template_name = "wagtailadmin/generic/history_results.html"
header_icon = "history"
paginate_by = 20
filterset_class = HistoryFilterSet

Wyświetl plik

@ -1,4 +1,4 @@
{% extends "wagtailadmin/generic/index_results.html" %}
{% extends "wagtailadmin/generic/listing_results.html" %}
{% load i18n l10n %}
{% block results %}
<form class="w-overflow-auto" data-controller="w-bulk" data-w-bulk-action-inactive-class="w-invisible" action="{% url 'wagtailforms:delete_submissions' form_page.id %}" method="get">