From de27f8e3e611f2e7f5c1f4819370e8a87f4680c4 Mon Sep 17 00:00:00 2001 From: Michael Ziegler Date: Sat, 31 Mar 2012 19:56:33 +0200 Subject: [PATCH] add STATIC_URL/STATIC_ROOT settings --- pyweb/settings.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyweb/settings.py b/pyweb/settings.py index 5656a5b..74746c8 100644 --- a/pyweb/settings.py +++ b/pyweb/settings.py @@ -196,6 +196,8 @@ MEDIA_ROOT = join( MUMBLE_DJANGO_ROOT, 'htdocs' ) # URL that handles the media served from MEDIA_ROOT. MEDIA_URL = MUMBLE_DJANGO_URL + 'static/' +STATIC_URL = MEDIA_URL +STATIC_ROOT = MEDIA_ROOT ## URL to static files of the currently active theme THEME_URL = '%sstatic/themes/%s/' % ( MUMBLE_DJANGO_URL, THEME )