How to change the number of objects (rows) to show in the Django admin change list view?
Note: If you want to read the blog series on Django Admin customization, then click here.
Suppose you have a Book model as given below.
# app_name/models.py
class Book(models.Model):
...
title = models.CharField(max_length=150)
is_activ...
blog.devjunction.in1 min read