Added empty directories for custom templates and images

Added template directories to settings.py to be searched first
Addresses issue #99
This commit is contained in:
Adarnof
2015-11-24 05:10:53 +00:00
parent e49a642f21
commit 745a5ceca8
2 changed files with 6 additions and 0 deletions

View File

@@ -122,10 +122,12 @@ TEMPLATE_CONTEXT_PROCESSORS = (
)
TEMPLATE_DIRS = (
'custom_templates',
'templates',
)
STATICFILES_DIRS = (
'custom_static',
'static',
)