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
cant reply due to low karma..
but don't forget to register the Admin Model too, like
admin.py
from django.contrib import admin
from .models import *
admin.site.register([Photo, PhotoAdmin]) # It take a model or an iteratble
Use the search_fields attribute of the ModelAdmin
:
class PhotoAdmin(admin.ModelAdmin):
...
search_fields = ('name', 'description', 'keyword', )