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 = ( TEMPLATE_DIRS = (
'custom_templates',
'templates', 'templates',
) )
STATICFILES_DIRS = ( STATICFILES_DIRS = (
'custom_static',
'static', 'static',
) )

4
custom_static/.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
# Ignore everything in this directory
*
# Except this file
!.gitignore