Django
Python
Programming
Web Development
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![]()
Add search_field in class BookAdmin. Example: search by title and author.
search_fields = ['title', 'author']Press enter or click to view image in full size![]()
