Sitemap

Django Admin Add Search Field

1 min readJul 6, 2020

--

Basic search field in Django Admin.

Start with this admin app (Book ModelAdmin). To create from the start refer this link.

Press enter or click to view image in full size
List of Book

Add search_field in class BookAdmin. Example: search by title and author.

search_fields = ['title', 'author']
admin.py
Press enter or click to view image in full size
Search field in Django Admin Model

--

--