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: