diff --git a/youmap/settings/base.py b/youmap/settings/base.py index 89c4e6ec..d37cd8ff 100644 --- a/youmap/settings/base.py +++ b/youmap/settings/base.py @@ -88,6 +88,8 @@ STATIC_ROOT = os.path.join(VAR_ROOT, 'static') MEDIA_ROOT = os.path.join(VAR_ROOT, 'uploads') STATICFILES_DIRS = ( + # Fabric will collect leaflet and draw in this dir + os.path.join(PROJECT_DIR, 'remote_static'), os.path.join(PROJECT_DIR, 'static'), ) @@ -99,11 +101,6 @@ 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 += ( )