Django Admin - Configuring Change List Entries
In Django admin, As of now, change list of a model show开发者_StackOverflow中文版s 100 entries per page. Is there any configuration available to customize this limit?
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
精彩评论