From: Magnus Hagander Date: Mon, 28 Aug 2017 10:59:30 +0000 (+0200) Subject: Fix incorrect reference to global templates directory X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=9e57d339264335e237945231b66d752550caeef3;p=pgcommitfest2.git 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. --- 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/', )