From 3e9f30cb91bfcf8a904f6c2da53de3f84abab26c Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 29 Jul 2019 02:44:31 -0400 Subject: [PATCH] Reduce the number of pager buttons Signed-off-by: Roberto Rosario --- mayan/settings/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/settings/base.py b/mayan/settings/base.py index 4e957ce93c..f00d601035 100644 --- a/mayan/settings/base.py +++ b/mayan/settings/base.py @@ -275,7 +275,7 @@ REST_FRAMEWORK = { # --------- Pagination -------- PAGINATION_SETTINGS = { - 'PAGE_RANGE_DISPLAYED': 8, + 'PAGE_RANGE_DISPLAYED': 5, 'MARGIN_PAGES_DISPLAYED': 2, }