diff options
author | maheshgudi | 2016-05-16 12:43:39 +0530 |
---|---|---|
committer | maheshgudi | 2016-05-27 12:43:12 +0530 |
commit | 4f94c550a16654c6723a8c09cff6557a135f4747 (patch) | |
tree | 68c228cbdfd551f4b1c775d8d990054df3080af3 | |
parent | 175153cc5daeccd80bfa0184114ebf01bae93013 (diff) | |
download | online_test-4f94c550a16654c6723a8c09cff6557a135f4747.tar.gz online_test-4f94c550a16654c6723a8c09cff6557a135f4747.tar.bz2 online_test-4f94c550a16654c6723a8c09cff6557a135f4747.zip |
home button will redirect moderators to exam/manage instead of exam/quizzes
-rw-r--r-- | yaksh/templates/yaksh/intro.html | 5 | ||||
-rw-r--r-- | yaksh/views.py | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/yaksh/templates/yaksh/intro.html b/yaksh/templates/yaksh/intro.html index f05e9a1..b4bc6d7 100644 --- a/yaksh/templates/yaksh/intro.html +++ b/yaksh/templates/yaksh/intro.html @@ -39,8 +39,11 @@ </li> </ul> <p> We hope you enjoy taking this exam !!!</p> - + {% if user == "moderator" %} + <form action="{{URL_ROOT}}/exam/manage/" method="post" align="center"> + {%else%} <form action="{{URL_ROOT}}/exam/quizzes/" method="post" align="center"> + {% endif %} {% csrf_token %} <center><button class="btn" name="home">Home</button></center> </form> diff --git a/yaksh/views.py b/yaksh/views.py index 53c9372..989abf7 100644 --- a/yaksh/views.py +++ b/yaksh/views.py @@ -367,6 +367,8 @@ def start(request, questionpaper_id=None, attempt_num=None): attempt_number = 1 if not last_attempt else last_attempt.attempt_number +1 context = {'user': user, 'questionpaper': quest_paper, 'attempt_num': attempt_number} + if is_moderator(user): + context["user"] = "moderator" return my_render_to_response('yaksh/intro.html', context, context_instance=ci) else: |