templates and static dirs for when they happen
This commit is contained in:
parent
643147cec7
commit
92b7e3b333
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user