I know this is gonna be a very basic question.
In Django, I have successfully created an admin panel. Now I want to add a custom search box in one of my field namely
Use the search_fields attribute of the ModelAdmin:
ModelAdmin
class PhotoAdmin(admin.ModelAdmin): ... search_fields = ('name', 'description', 'keyword', )