From 7e076daf37511237197fc9dd8c26f26dd7669147 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 24 Jan 2015 02:33:53 -0400 Subject: [PATCH] Allow for the pagination templates to be overrided --- mayan/settings/base.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mayan/settings/base.py b/mayan/settings/base.py index 7f2afdb9ee..91d313946a 100644 --- a/mayan/settings/base.py +++ b/mayan/settings/base.py @@ -68,7 +68,6 @@ INSTALLED_APPS = ( 'lock_manager', 'mimetype', 'navigation', - 'pagination', 'permissions', 'project_setup', 'project_tools', @@ -102,6 +101,9 @@ INSTALLED_APPS = ( # Must be last on Django < 1.7 as per documentation # https://django-activity-stream.readthedocs.org/en/latest/installation.html 'actstream', + # Pagination app must go after the main app so that the main app can + # override the default pagination template + 'pagination', ) MIDDLEWARE_CLASSES = (