From 5922cd7629874887e2d9f0dfe2f1b6a33fe77172 Mon Sep 17 00:00:00 2001 From: Matthias Portzel Date: Thu, 7 Apr 2022 21:32:19 -0400 Subject: [PATCH] Change to show up to 1,000,000 results on the search page --- whispermaphone/settings.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/whispermaphone/settings.py b/whispermaphone/settings.py index 78293e8..9e30feb 100644 --- a/whispermaphone/settings.py +++ b/whispermaphone/settings.py @@ -57,6 +57,8 @@ HAYSTACK_CONNECTIONS = { }, } +HAYSTACK_SEARCH_RESULTS_PER_PAGE = 1000000 + MIDDLEWARE = [ "django.middleware.security.SecurityMiddleware", "django.middleware.common.CommonMiddleware",