diff options
Diffstat (limited to 'settings.py')
-rw-r--r-- | settings.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/settings.py b/settings.py index 6fba2cd..4b224da 100644 --- a/settings.py +++ b/settings.py @@ -1,3 +1,5 @@ +import os + # Django settings for helsinki project. DEBUG = True @@ -62,7 +64,9 @@ MIDDLEWARE_CLASSES = ( ROOT_URLCONF = 'helsinki.urls' -TEMPLATE_DIRS = ('templates',) +TEMPLATE_DIRS = ( + os.path.join(os.path.dirname(__file__), "templates"), +) INSTALLED_APPS = ( 'django.contrib.auth', |