diff options
Diffstat (limited to 'coding_assignment_project')
-rw-r--r-- | coding_assignment_project/settings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coding_assignment_project/settings.py b/coding_assignment_project/settings.py index 9afeb50..3d44c83 100644 --- a/coding_assignment_project/settings.py +++ b/coding_assignment_project/settings.py @@ -56,7 +56,7 @@ ROOT_URLCONF = 'coding_assignment_project.urls' TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', - 'DIRS': ['coding_assignment_project/templates'], + 'DIRS': [os.path.join(BASE_DIR, 'coding_assignment_project', 'templates')], 'APP_DIRS': True, 'OPTIONS': { 'context_processors': [ |