From 3f6a986927e26eab5054e54bb8dde9534f26d2e4 Mon Sep 17 00:00:00 2001 From: Aurélien Bompard Date: Mon, 10 Sep 2012 16:21:11 +0200 Subject: Fix static files directory --- settings.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'settings.py') diff --git a/settings.py b/settings.py index 3771fc9..6776e71 100644 --- a/settings.py +++ b/settings.py @@ -64,7 +64,7 @@ MEDIA_URL = '' # in apps' "static/" subdirectories and in STATICFILES_DIRS. # Example: "/home/media/media.lawrence.com/static/" #STATIC_ROOT = '' -STATIC_ROOT = BASE_DIR + '/static_files/' +STATIC_ROOT = BASE_DIR + '/static/' # URL prefix for static files. # Example: "http://media.lawrence.com/static/" @@ -73,14 +73,14 @@ STATIC_URL = '/static/' # URL prefix for admin static files -- CSS, JavaScript and images. # Make sure to use a trailing slash. # Examples: "http://foo.com/static/admin/", "/static/admin/". -ADMIN_MEDIA_PREFIX = '/static/admin/' +#ADMIN_MEDIA_PREFIX = '/static/admin/' # Additional locations of static files STATICFILES_DIRS = ( # 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. - BASE_DIR + '/static/', + #BASE_DIR + '/static/', ) # List of finder classes that know how to find static files in -- cgit