From 18a4826edaf069ea4fda4c694d9e22d32de7c43f Mon Sep 17 00:00:00 2001 From: Jan Felix Wiebe Date: Thu, 19 Jan 2017 22:02:32 +0100 Subject: [PATCH] Changed pagination of organizer page ...to show more than one event per page. Maybe this value should become a configurable value in the future. --- src/pretix/presale/views/organizer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/presale/views/organizer.py b/src/pretix/presale/views/organizer.py index 05989c9c724..55964f0ad8c 100644 --- a/src/pretix/presale/views/organizer.py +++ b/src/pretix/presale/views/organizer.py @@ -10,7 +10,7 @@ class OrganizerIndex(OrganizerViewMixin, ListView): model = Event context_object_name = 'events' template_name = 'pretixpresale/organizers/index.html' - paginate_by = 1 + paginate_by = 10 def get_queryset(self): query = Q(is_public=True)