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") )