diff --git a/collection/games/admin.py b/collection/games/admin.py index 27e6466..936e5c9 100644 --- a/collection/games/admin.py +++ b/collection/games/admin.py @@ -82,6 +82,7 @@ class GameAdmin(admin.ModelAdmin): class TimelineAdmin(admin.ModelAdmin): list_display = ('date', 'status', 'item') + search_fields = ('item__name', ) admin.site.register(Platform, PlatformAdmin)