Add remote_static dir in STATICFILES_DIR

This commit is contained in:
Yohan Boniface 2012-11-22 14:10:38 +01:00
parent 067d421431
commit 3dd7d96065

View file

@ -99,6 +99,11 @@ TEMPLATE_DIRS = (
os.path.join(PROJECT_DIR, 'templates'),
)
STATICFILES_DIRS = (
# Fabric will collect leaflet and draw in this dir
os.path.join(PROJECT_DIR, 'remote_static'),
)
TEMPLATE_CONTEXT_PROCESSORS += (
)