Hello,
I have ReleaseDate
model which has tons of data and each has foreign key to Game
. I currently have my admin for release dates set like this: list_filter = ('game',)
My only use case for this admin listing is to view all release date objects for particular game in case I need to do some manual changes or deletion. In this case I can search in the browser, find the game in the filter and query the dates.
The problem is that this is suuuper slow, both the initial load and the filtering, since it needs to load all the games. Is there a better way for this? Similar to when in the edit form you have inline search instead of a dropdown with all the values.
Here is screenshot in case my description isn’t clear enough, this is how the admin looks:
Thanks