Add a select box to django admin search.
This is a django app that add a select box to admin search form.
search_fields = ('id', 'title', 'author__full_name')
django 1.10
This is nothing but a django app. So just copy searchadmin to your project folder, add to your install apps, then use it instead of old django admin.
from searchadmin.admin import SelectModelAdmin
class NewAdmin(SelectModelAdmin)
pass