I currently have a listing in django admin that is split across 8 pages.
What I need to do is to have a button/link to display all items of a list in django admin even if there are more than 200 items while keeping the pagination.
Show all link does exactly what I need but it's limited to 200 items. Are there any ways to change it? (without modifying the core). Also, are there ways to change list_per_page
in the modeladmin on demand?