diff options
author | ankitjavalkar | 2016-07-08 11:55:50 +0530 |
---|---|---|
committer | ankitjavalkar | 2016-07-08 11:55:50 +0530 |
commit | 5a89974ed92b57a33c585015bebb26594128fd8c (patch) | |
tree | 687ae407d4399437a97bc5bee99b2b5084a97f2e | |
parent | d67c2f3933db20d9d68c826e3a2964947163d97a (diff) | |
download | online_test-5a89974ed92b57a33c585015bebb26594128fd8c.tar.gz online_test-5a89974ed92b57a33c585015bebb26594128fd8c.tar.bz2 online_test-5a89974ed92b57a33c585015bebb26594128fd8c.zip |
Fix login redirect urls in settings.py
-rw-r--r-- | online_test/settings.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/online_test/settings.py b/online_test/settings.py index 7a89217..f5f1d0a 100644 --- a/online_test/settings.py +++ b/online_test/settings.py @@ -86,7 +86,9 @@ USE_TZ = True STATIC_URL = '/static/' -LOGIN_URL = '/exam/login' +LOGIN_URL = '/exam/login/' + +LOGIN_REDIRECT_URL = '/exam/' EMAIL_USE_TLS = False |