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