﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
36512	The range of the pagination block on the admin ChangeList page is incorrect.	Antoliny	Antoliny	"Recently, accessibility improvements were made to the `ChangeList` pagination on the admin page.[https://github.com/django/django/pull/19448 PR]
As part of that process, the save button that was previously within the pagination block was separated.
However, the current pagination block still includes the save button within its range.
{{{
        {% block pagination %}
        <div class=""changelist-footer"">
        {% pagination cl %}
        {% if cl.formset and cl.result_count %}<input type=""submit"" name=""_save"" class=""default"" value=""{% translate 'Save' %}"">{% endif %}
        {% endblock %}
        </div>
}}}
As a result, when overriding the template and customizing the contents of the pagination block, the save button may be unintentionally removed.
The range of the pagination block should be adjusted to include only the pagination template tags."	Bug	closed	contrib.admin	5.2	Normal	invalid	changelist, pagination		Unreviewed	1	0	0	0	0	0
