diff options
author | Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com> | 2011-03-13 19:11:55 (GMT) |
---|---|---|
committer | Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com> | 2011-03-13 19:11:55 (GMT) |
commit | 41c1f2b1ca2d3f0507fb27e7b1308c9135a1b1e7 (patch) | |
tree | ce87025890e0de0e1e3b7c441647016b8cd96c70 | |
parent | b1c06ac9b075be9c551b906d0f323bc2b9c35c00 (diff) | |
parent | 5a39ae336f3772d9770b0f62399e3b5d50ab3642 (diff) |
Merge branch 'master' of github.com:nnrcschmdt/helsinki
-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', |