From 425abebc9a5fa88ae768c9e5e9e4614cf805b125 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Wed, 27 May 2026 13:37:44 -0400 Subject: [PATCH] [calendar] Remove mood and video by default --- vrobbler/apps/scrobbles/views.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/vrobbler/apps/scrobbles/views.py b/vrobbler/apps/scrobbles/views.py index ccaacc6..dbdd7b8 100644 --- a/vrobbler/apps/scrobbles/views.py +++ b/vrobbler/apps/scrobbles/views.py @@ -1293,6 +1293,7 @@ class ScrobbleCalendarView(LoginRequiredMixin, TemplateView): "VideoGame", "Book", "Mood", + "Video", ] MEDIA_EMOJI = { @@ -1303,9 +1304,10 @@ class ScrobbleCalendarView(LoginRequiredMixin, TemplateView): "VideoGame": "🎮", "Book": "📚", "Mood": "🥰", + "Video": "🎬", } - DEFAULT_EXCLUDE = ["Task"] + DEFAULT_EXCLUDE = ["Task", "Mood", "Video"] MONTH_COLORS = [ "#db7a7a", # Jan @@ -1360,7 +1362,7 @@ class ScrobbleCalendarView(LoginRequiredMixin, TemplateView): timestamp__date__lte=month_end, media_type__in=active_types, ) - .select_related("task", "birding_location", "food", "trail", "video_game", "book", "mood") + .select_related("task", "birding_location", "food", "trail", "video_game", "book", "mood", "video") .order_by("timestamp") )