Add tabs and clean up main page

This commit is contained in:
2023-01-11 11:55:44 -05:00
parent 4f0d5ad7f4
commit 83b6ba9cc3
2 changed files with 117 additions and 94 deletions

View File

@ -75,7 +75,7 @@ class RecentScrobbleList(ListView):
def get_queryset(self):
return Scrobble.objects.filter(
track__isnull=False, in_progress=False
).order_by('-timestamp')[:25]
).order_by('-timestamp')[:15]
@csrf_exempt