Event gallery shows most recent albums first.

Doubled the shown events in the gallery to 24 per page.
This commit is contained in:
2018-04-27 10:20:29 +02:00
parent 28f7292c9d
commit 3ef947f128

View File

@@ -80,7 +80,8 @@ class EventGallery(generic.ListView):
event_series__isnull=True,
photo_count__gt=0
)
paginate_by = 12
queryset = queryset.order_by('-start')
paginate_by = 24
class EventListIcal(generic.View):