From 2b88f89794aee28a56b0b7771ba39fbbdfa726e4 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Wed, 20 May 2026 13:29:09 -0400 Subject: [PATCH] [locations] Update view to show all locations --- vrobbler/apps/locations/views.py | 2 +- vrobbler/templates/_scrobblable_list.html | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/vrobbler/apps/locations/views.py b/vrobbler/apps/locations/views.py index bd09eb2..50d107d 100644 --- a/vrobbler/apps/locations/views.py +++ b/vrobbler/apps/locations/views.py @@ -8,7 +8,7 @@ from scrobbles.views import ChartContextMixin class GeoLocationListView(generic.ListView): model = GeoLocation - paginate_by = 75 + paginate_by = 100 def get_queryset(self): return ( diff --git a/vrobbler/templates/_scrobblable_list.html b/vrobbler/templates/_scrobblable_list.html index 2945d67..58187a2 100644 --- a/vrobbler/templates/_scrobblable_list.html +++ b/vrobbler/templates/_scrobblable_list.html @@ -21,7 +21,6 @@ {% for obj in object_list %} - {% if obj.title %} {{obj.scrobble_set.last.local_timestamp}} {{obj}} @@ -36,7 +35,6 @@ Scrobble {% endif %} - {% endif %} {% endfor %}