1

In Django admin, As of now, change list of a model shows 100 entries per page. Is there any configuration available to customize this limit?

Siva Arunachalam
  • 7,582
  • 15
  • 79
  • 132

1 Answers1

4

You need a list_per_page attribute in your Django admin.py:

https://docs.djangoproject.com/en/dev/ref/contrib/admin/#django.contrib.admin.ModelAdmin.list_per_page

fijter
  • 17,607
  • 2
  • 25
  • 28