Move pagination from change_list_results template to change_list.
Review Request #12149 — Created March 14, 2022 and submitted — Latest diff uploaded
Django has done some rearranging of their admin site templates, and the
paginator is no longer passed through the{% results_list %}
tag,
instead being implemented from within the outerchange_list.html
template. This change does the same for our template overrides.
- Loaded object lists in the admin site.
- Made a change to an object and was able to successfully load the
post-save results list.