# HG changeset patch # User Branko Majic # Date 2013-08-29 09:10:04 # Node ID 82dd9e1399589eb616e677757cbab0babba5a246 # Parent 8a8210108dc80b387b6fab2143da400c25ae2a3f DMT-1: Add project-specific directory with static files. diff --git a/project/project_name/settings/base.py b/project/project_name/settings/base.py --- a/project/project_name/settings/base.py +++ b/project/project_name/settings/base.py @@ -46,6 +46,7 @@ STATIC_URL = '/static/' # Additional locations of static files STATICFILES_DIRS = ( + path.normpath(path.join(PROJECT_ROOT, "static")), # Put strings here, like "/home/html/static" or "C:/www/django/static". # Always use forward slashes, even on Windows. # Don't forget to use absolute paths, not relative paths.