Django adminsite customize search_fields query
Posted
by dArignac
on Stack Overflow
See other posts from Stack Overflow
or by dArignac
Published on 2010-06-17T06:32:27Z
Indexed on
2010/06/17
6:43 UTC
Read the original article
Hit count: 262
Howdy!
In the django admin you can set the search_fields for the ModelAdmin to be able to search over the properties given there. My model class has a property that is not a real model property, means it is not within the database table. The property relates to another database table that is not tied to the current model through relations. But I want to be able to search over it, so I have to somehow customize the query the admin site creates to do the filtering when the search field was filled - is this possible and if, how? I can query the database table of my custom property and it then returns the ids of the model classes fitting the search. This then, as I said, has to flow into the admin site search query.
Thanks!
© Stack Overflow or respective owner