How to add custom column 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 which has an author field as given below.
# app_name/models.py
class Book(models.Model):
...
author = models.ForeignKey(...
blog.devjunction.in1 min read