summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAurélien Bompard <aurelien@bompard.org>2012-09-10 16:21:11 +0200
committerAurélien Bompard <aurelien@bompard.org>2012-09-10 16:21:11 +0200
commit3f6a986927e26eab5054e54bb8dde9534f26d2e4 (patch)
tree0beb70e42d6ad4356892504243a89624a217d3df
parentff980239e605c90fb7d69a0ddb1af443eb5685ac (diff)
downloadhk-app-3f6a986927e26eab5054e54bb8dde9534f26d2e4.tar.gz
hk-app-3f6a986927e26eab5054e54bb8dde9534f26d2e4.tar.xz
hk-app-3f6a986927e26eab5054e54bb8dde9534f26d2e4.zip
Fix static files directory
-rw-r--r--settings.py6
1 files changed, 3 insertions, 3 deletions
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