From 376a31db96d704705b8e79f38480fbc8a4f3dd8d Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 25 Jan 2012 10:33:01 -0400 Subject: [PATCH] Reorder installed apps so that the web theme pagination template is found --- settings.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/settings.py b/settings.py index 457d8dc732..fb3ed62f47 100644 --- a/settings.py +++ b/settings.py @@ -136,7 +136,6 @@ INSTALLED_APPS = ( 'mptt', 'compressor', 'djangorestframework', - 'pagination', # Base generic 'permissions', 'project_setup', @@ -145,6 +144,9 @@ INSTALLED_APPS = ( 'navigation', 'lock_manager', 'web_theme', +# pagination needs to go after web_theme so that the pagination template +# if found + 'pagination', 'common', 'django_gpg', 'dynamic_search', @@ -170,6 +172,7 @@ INSTALLED_APPS = ( 'main', 'rest_api', 'document_signatures', + ) TEMPLATE_CONTEXT_PROCESSORS = (