From 92b7e3b333ed8230aa004ca73257d9534c336520 Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Thu, 20 Mar 2014 19:19:43 -0500 Subject: [PATCH] templates and static dirs for when they happen --- dr_botzo/settings.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/dr_botzo/settings.py b/dr_botzo/settings.py index dfe601c..c1e9f17 100644 --- a/dr_botzo/settings.py +++ b/dr_botzo/settings.py @@ -80,11 +80,21 @@ USE_L10N = True USE_TZ = True +# templates +TEMPLATE_DIRS = ( + os.path.join(BASE_DIR, 'templates'), +) + + # Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/1.6/howto/static-files/ STATIC_URL = '/static/' +STATICFILES_DIRS = ( + os.path.join(BASE_DIR, 'static'), +) + try: from dr_botzo.localsettings import * except ImportError: