templates and static dirs for when they happen

This commit is contained in:
Brian S. Stephan 2014-03-20 19:19:43 -05:00
parent 643147cec7
commit 92b7e3b333
1 changed files with 10 additions and 0 deletions

View File

@ -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: