From 3831620d70c8902b5ed00931fb345515315e490c Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Thu, 18 Jun 2015 15:56:57 +0530 Subject: static path --- scipy2015/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scipy2015/settings.py b/scipy2015/settings.py index b1ef70f..0ae22d3 100644 --- a/scipy2015/settings.py +++ b/scipy2015/settings.py @@ -49,14 +49,14 @@ MIDDLEWARE_CLASSES = ( ) TEMPLATE_DIRS = ( - os.path.join(BASE_DIR, 'templates'), + os.path.join(BASE_DIR, '../website/templates'), ) STATICFILES_DIRS = ( # Put strings here, like "/home/html/static" or "C:/www/django/static". # Always use forward slashes, even on Windows. # Don't forget to use absolute paths, not relative paths. - os.path.join(BASE_DIR, 'static'), + os.path.join(BASE_DIR, '../website/static'), ) ROOT_URLCONF = 'scipy2015.urls' -- cgit