diff options
author | eliott <eliott@cactuswax.net> | 2007-12-29 14:51:13 -0800 |
---|---|---|
committer | eliott <eliott@cactuswax.net> | 2007-12-29 14:51:13 -0800 |
commit | 824004e7db73931c83f8ed45b48fbee782dfae59 (patch) | |
tree | be518b32ba9a4191ddc18426bb7f7cb59424774f | |
parent | 487fee6e755e446adb4098abfa85c4c7d56c8bc2 (diff) |
Moved admin media under media dir.
It helps with both serving static files during a testing scenario, to easing
deployment.
-rw-r--r-- | settings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings.py b/settings.py index c2f779d6..8a85c98d 100644 --- a/settings.py +++ b/settings.py @@ -35,7 +35,7 @@ SITE_ID = 1 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a # trailing slash. # Examples: "http://foo.com/media/", "/media/". -ADMIN_MEDIA_PREFIX = '/admin-media/' +ADMIN_MEDIA_PREFIX = '/media/admin_media/' # URL to send users when they don't have sufficient privileges BADPRIVS_URL = '/denied/' |