From 9e57d339264335e237945231b66d752550caeef3 Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Mon, 28 Aug 2017 12:59:30 +0200 Subject: [PATCH] Fix incorrect reference to global templates directory This has probably been needed since an upgrade a long time ago but got stuck in a separate branch. Fixes the case where the admin interface could end up rendering a login form that would then not work, instead of providing the proper redirect. --- pgcommitfest/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pgcommitfest/settings.py b/pgcommitfest/settings.py index f3ceaa2..c4c0e37 100644 --- a/pgcommitfest/settings.py +++ b/pgcommitfest/settings.py @@ -108,7 +108,7 @@ TEMPLATE_DIRS = ( # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates". # Always use forward slashes, even on Windows. # Don't forget to use absolute paths, not relative paths. - '../global_template/', + 'global_template/', ) -- 2.39.5