summaryrefslogtreecommitdiff
path: root/yaksh/templates
diff options
context:
space:
mode:
authorPrabhu Ramachandran2017-10-05 19:56:07 +0530
committerGitHub2017-10-05 19:56:07 +0530
commit72c9a0f2a84925b9f8096702aa702e1deb49e2ce (patch)
tree7efe929fbc1d58d3ca3cd65753600d3b995c3ded /yaksh/templates
parent9249ba66edecb68d5d946425974625b743386635 (diff)
parent2ffbca59a947bcef7f4ae28b2bd1d73d18179380 (diff)
downloadonline_test-72c9a0f2a84925b9f8096702aa702e1deb49e2ce.tar.gz
online_test-72c9a0f2a84925b9f8096702aa702e1deb49e2ce.tar.bz2
online_test-72c9a0f2a84925b9f8096702aa702e1deb49e2ce.zip
Merge pull request #344 from ankitjavalkar/allow-paper-revisit
Allow user to quit the paper manually and revisit the paper if necessary
Diffstat (limited to 'yaksh/templates')
-rw-r--r--yaksh/templates/exam.html8
1 files changed, 7 insertions, 1 deletions
diff --git a/yaksh/templates/exam.html b/yaksh/templates/exam.html
index 45b85f0..4d211d2 100644
--- a/yaksh/templates/exam.html
+++ b/yaksh/templates/exam.html
@@ -18,7 +18,13 @@
<form id="logout" action="{{URL_ROOT}}/exam/quit/{{ paper.attempt_number }}/{{ paper.question_paper.id }}/" method="post" class="pull-right">
{% csrf_token %}
<ul class="nav navbar-nav navbar">
- <li style="padding: 10px"><button class="btn btn-danger btn-sm" type="submit" name="quit">Quit Exam <span class="glyphicon glyphicon-off"></span></button></li>
+ <li style="padding: 10px"><button class="btn btn-danger btn-sm" type="submit" name="quit">
+ {% if paper.questions_unanswered.all %}
+ Quit Exam
+ {% else %}
+ Finish Exam
+ {% endif %}
+ <span class="glyphicon glyphicon-off"></span></button></li>
</ul>
</form>
<div class="time-div" id="time_left"></div>