diff options
author | Sashi20 | 2018-09-18 15:45:31 +0530 |
---|---|---|
committer | GitHub | 2018-09-18 15:45:31 +0530 |
commit | 0096ca995b5885b64ef91afc7ddfbd9e703e16b8 (patch) | |
tree | bc5783054e6b3f3ec4f2be9a9d4120b2f8ef1b1c /nccps2018 | |
parent | 729145dc29514f25be34168049e5bfd1838379f1 (diff) | |
parent | e8b91eb48c35252159dc5b03da3adff393e071ad (diff) | |
download | nccps-2018-0096ca995b5885b64ef91afc7ddfbd9e703e16b8.tar.gz nccps-2018-0096ca995b5885b64ef91afc7ddfbd9e703e16b8.tar.bz2 nccps-2018-0096ca995b5885b64ef91afc7ddfbd9e703e16b8.zip |
Merge pull request #7 from Sashi20/development
Fixed issue of downloading attachments and minor changes in templates
Diffstat (limited to 'nccps2018')
-rw-r--r-- | nccps2018/settings.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/nccps2018/settings.py b/nccps2018/settings.py index 7217aa5..db36bd8 100644 --- a/nccps2018/settings.py +++ b/nccps2018/settings.py @@ -131,6 +131,8 @@ STATICFILES_DIRS = [ '/../static/', ] +MEDIA_ROOT = os.path.join(BASE_DIR, 'uploads') +MEDIA_URL = "/downloads/" LOGIN_REDIRECT_URL = '/proposal' LOGOUT_REDIRECT_URL = '/accounts/login' |