# How to add custom column in the Django Admin change list view?

> **Note**: If you want to read the blog [series](https://blog.devjunction.in/series/django-admin-tips-tricks) on Django Admin customization, then [click here](https://blog.devjunction.in/series/django-admin-tips-tricks).

Suppose you have a `Book` model which has an `author` field as given below.

```python
# app_name/models.py

class Book(models.Model):
	...
	author = models.ForeignKey(User, on_delete=models.CASCADE)
```

And you want to show the author's email in the list view of `Book` model admin, here is how you do it.

```python
# app_name/admin.py

from django.contrib import admin
from app_name.models import Book

@admin.register(Book)
class BookAdmin(admin.ModelAdmin):
	...
	list_display = ("author_email", ) # author_email value is coming from below

	def author_email(self, obj): # You can create a custom method and show it in the 'list_display'
		return obj.author.email
```

***Any thoughts? Write it down in the comments.***

> For more such crispy blogs daily, follow Dev.Junction, subscribe to our newsletter and get notified.

## **Social Links**

*   [**LinkedIn**](https://www.linkedin.com/in/mnamegaurav/)**:** [**https://www.linkedin.com/in/mnamegaurav/**](https://www.linkedin.com/in/mnamegaurav/)
    
*   [**YouTube**](https://www.youtube.com/devjunction)**:** [**https://www.youtube.com/devjunction**](https://www.youtube.com/devjunction)
    
*   [**Website**](https://gaurav.devjunction.in/)**:** [**https://gaurav.devjunction.in/**](https://gaurav.devjunction.in/)
    
*   [**GitHub**](https://github.com/mnamegaurav)**:** [**https://github.com/mnamegaurav**](https://github.com/mnamegaurav)
    
*   [**Instagram**](https://www.instagram.com/mnamegaurav/)**:** [**https://www.instagram.com/mnamegaurav/**](https://www.instagram.com/mnamegaurav/)
    
*   [**Twitter**](https://twitter.com/mnamegaurav)**:** [**https://twitter.com/mnamegaurav**](https://twitter.com/mnamegaurav)
