Use logical filters for scrobble admin

No need to filter by video, but in progress and source are pretty handy.
This commit is contained in:
2023-01-08 23:00:34 -05:00
parent 09e96a55d4
commit da64cb2b6f

View File

@ -13,7 +13,7 @@ class ScrobbleAdmin(admin.ModelAdmin):
"playback_position",
"in_progress",
)
list_filter = ("video",)
list_filter = ("in_progress", "source")
ordering = ("-timestamp",)