Search posts, tags, users, and pages
Django The Right Way
Django under the hood provides an app called Admin a.k.a Django Admin, which provides Admin UI interface/web page for your Django Project. This admin interface can automatically generate CRUD views/ (form/tables) for your models with very minimal set...
Kamyshnikov Bogdan
I'm backend developer. I use Django and Python to create web applications
Nice article! How to add a search field?
You can add search field using search_fields attribute on your admin.ModelAdmin class. Full code will look like this
search_fields
admin.ModelAdmin
class InformationAdmin(admin.ModelAdmin): list_filter = ['date_of_birth'] search_fields = ['name']
Kamyshnikov Bogdan
I'm backend developer. I use Django and Python to create web applications
Nice article! How to add a search field?