diff options
author | Markus Zapke-Grùˆndemann <markus@keimlink.de> | 2012-03-28 21:39:58 +0200 |
---|---|---|
committer | Markus Zapke-Grùˆndemann <markus@keimlink.de> | 2012-03-28 21:39:58 +0200 |
commit | eafda4ef5a9469c15d769763498163499ddb5871 (patch) | |
tree | 18fcb37882f647262f809ff2ff46362522875020 | |
parent | a25d8d1762dbafd32130c00f5d83cc6bef40118d (diff) |
add ADMINS and MEDIA_URL
-rw-r--r-- | sublab_project/settings.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sublab_project/settings.py b/sublab_project/settings.py index 8eeb475..b28a007 100644 --- a/sublab_project/settings.py +++ b/sublab_project/settings.py @@ -10,7 +10,8 @@ DEBUG = False TEMPLATE_DEBUG = DEBUG ADMINS = ( - # ('Your Name', 'your_email@example.com'), + ('nobody', 'nobody-sublab.org@nowhere.ws'), + ('keimlink', 'markus@keimlink.de') ) MANAGERS = ADMINS @@ -56,7 +57,7 @@ MEDIA_ROOT = '' # URL that handles the media served from MEDIA_ROOT. Make sure to use a # trailing slash. # Examples: "http://media.lawrence.com/media/", "http://example.com/media/" -MEDIA_URL = '' +MEDIA_URL = '/media/' # Absolute path to the directory static files should be collected to. # Don't put anything in this directory yourself; store your static files |