diff options
author | Prabhu Ramachandran | 2011-11-08 02:53:26 +0530 |
---|---|---|
committer | Prabhu Ramachandran | 2011-11-08 02:53:26 +0530 |
commit | 0b842b5e1e0eb7aadb5c87a3993cdcac94b34323 (patch) | |
tree | e4c86b1abd9b598e3619d4cddc6ba40afff8945a | |
parent | 0fa90f55cb30effc7abd0ae3748393bc3744a923 (diff) | |
download | online_test-0b842b5e1e0eb7aadb5c87a3993cdcac94b34323.tar.gz online_test-0b842b5e1e0eb7aadb5c87a3993cdcac94b34323.tar.bz2 online_test-0b842b5e1e0eb7aadb5c87a3993cdcac94b34323.zip |
BUG: "exam/complete/" was not logging out.
-rw-r--r-- | exam/views.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/exam/views.py b/exam/views.py index 10d6c9a..8cc239d 100644 --- a/exam/views.py +++ b/exam/views.py @@ -146,5 +146,6 @@ def check(request, q_id): return show_question(request, next_q) def complete(request): + logout(request) return render_to_response('exam/complete.html') -
\ No newline at end of file + |