diff --git a/vrobbler/apps/scrobbles/views.py b/vrobbler/apps/scrobbles/views.py index 330277a..042901d 100644 --- a/vrobbler/apps/scrobbles/views.py +++ b/vrobbler/apps/scrobbles/views.py @@ -91,6 +91,14 @@ class RecentScrobbleList(ListView): sport_event__isnull=False ).order_by("-timestamp")[:15] + data["videogame_scrobble_list"] = completed_for_user.filter( + video_game__isnull=False + ).order_by("-timestamp")[:15] + + data["boardgame_scrobble_list"] = completed_for_user.filter( + board_game__isnull=False + ).order_by("-timestamp")[:15] + data["active_imports"] = AudioScrobblerTSVImport.objects.filter( processing_started__isnull=False, processed_finished__isnull=True, diff --git a/vrobbler/templates/scrobbles/scrobble_list.html b/vrobbler/templates/scrobbles/scrobble_list.html index 52ffcb7..b3925e2 100644 --- a/vrobbler/templates/scrobbles/scrobble_list.html +++ b/vrobbler/templates/scrobbles/scrobble_list.html @@ -451,6 +451,14 @@ +