How to add custom search box in Django-admin? How to add custom search box in Django-admin? python python

How to add custom search box in Django-admin?


Use the search_fields attribute of the ModelAdmin:

class PhotoAdmin(admin.ModelAdmin):    ...    search_fields = ['name', 'description', 'user__related_fieldname','keyword', ]


cant reply due to low karma..

but don't forget to register the Admin Model too, like

admin.py

from django.contrib import adminfrom .models import *admin.site.register(Photo, PhotoAdmin)


When you write:

admin.site.register([Photo, PhotoAdmin])

you register in admin two models: Photo and PhotoAdmin, you must register Model and ModelAdmin for it, like this:

admin.site.register(Photo, PhotoAdmin)