Replace weekly artists with monthly

This commit is contained in:
2023-01-17 17:23:13 -05:00
parent 065fc98a87
commit fd984d7460
2 changed files with 7 additions and 7 deletions

View File

@ -60,11 +60,11 @@ class RecentScrobbleList(ListView):
data['sport_scrobble_list'] = Scrobble.objects.filter(
sport_event__isnull=False, played_to_completion=True
).order_by('-timestamp')[:15]
data['top_daily_tracks'] = top_tracks()
data['top_weekly_tracks'] = top_tracks(filter='week')
# data['top_daily_tracks'] = top_tracks()
# data['top_weekly_tracks'] = top_tracks(filter='week')
data['top_monthly_tracks'] = top_tracks(filter='month')
data['top_daily_artists'] = top_artists()
# data['top_daily_artists'] = top_artists()
data['top_weekly_artists'] = top_artists(filter='week')
data['top_monthly_artists'] = top_artists(filter='month')