diff --git a/youmap/settings/base.py b/youmap/settings/base.py index c3ff60ff..89c4e6ec 100644 --- a/youmap/settings/base.py +++ b/youmap/settings/base.py @@ -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 += ( )