How to disable admin pagination in Django?
In this tutorial, we will learn How to disable admin pagination in Django? Most of the pagination is not disabled, but the client requires to disable the pagination. So completely disable pagination on an admin list view page. we use sys.maxsize attribute of the sys module fetches the largest value. The maxsize value returned by max size depends on the platform architecture:
You can also read : How to show the larger number on listview page?
maxsize 32-bit: i.e. 2147483647
maxsize 64-bit: i.e. 9223372036854775807
Example
import sys
...
@admin.register(Question)
class QuestionAdmin(admin.ModelAdmin):
...
list_per_page = sys.maxsize