From fcd0c69b97e02366b5b56bc1e207fa85b961fa07 Mon Sep 17 00:00:00 2001 From: Tudor Amariei Date: Mon, 2 Dec 2024 18:58:11 +0200 Subject: [PATCH] Remove pagination from candidates' listings --- backend/hub/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/hub/views.py b/backend/hub/views.py index 52b4559..501cf08 100644 --- a/backend/hub/views.py +++ b/backend/hub/views.py @@ -574,7 +574,7 @@ def organization_vote(request, pk, action): class CandidateListView(SearchMixin): allow_filters = ["domain"] - paginate_by = 9 + paginate_by = 200 template_name = "hub/candidate/list.html" @classmethod