From 0ed48fac7f573da4b54cd9b5ca5832ebf3f56bc2 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Fri, 4 Oct 2019 16:47:44 +0200 Subject: [PATCH] Add pagination to event list on organizer detail page --- src/pretix/control/views/organizer.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pretix/control/views/organizer.py b/src/pretix/control/views/organizer.py index 2d23f983fc..19cd2fd369 100644 --- a/src/pretix/control/views/organizer.py +++ b/src/pretix/control/views/organizer.py @@ -92,6 +92,7 @@ class OrganizerDetail(OrganizerDetailViewMixin, OrganizerPermissionRequiredMixin template_name = 'pretixcontrol/organizers/detail.html' permission = None context_object_name = 'events' + paginate_by = 50 @property def organizer(self):