summaryrefslogtreecommitdiff
path: root/yaksh/templates/exam.html
diff options
context:
space:
mode:
authormaheshgudi2017-02-03 01:28:50 +0530
committermaheshgudi2017-02-03 11:57:03 +0530
commitb277f9191bf8720533901e58db36851675b8f430 (patch)
treeb38157409549b13c801cdfc9d2115eb237e6a210 /yaksh/templates/exam.html
parentf3731c3314410377133431ae1c6ac0199ed822e2 (diff)
downloadonline_test-b277f9191bf8720533901e58db36851675b8f430.tar.gz
online_test-b277f9191bf8720533901e58db36851675b8f430.tar.bz2
online_test-b277f9191bf8720533901e58db36851675b8f430.zip
added skip question feature. closes #191
The can_skip_questions attribute is to be set True for students to be able to skip questions. If it is set as False, students wont be able to skip to the next question.
Diffstat (limited to 'yaksh/templates/exam.html')
-rw-r--r--yaksh/templates/exam.html4
1 files changed, 4 insertions, 0 deletions
diff --git a/yaksh/templates/exam.html b/yaksh/templates/exam.html
index 101f3f3..00633a3 100644
--- a/yaksh/templates/exam.html
+++ b/yaksh/templates/exam.html
@@ -31,6 +31,7 @@
<p> Question Navigator </p>
<ul class="pagination pagination-sm">
{% for qid in paper.questions.all %}
+ {%if paper.question_paper.quiz.can_skip_questions%}
{% if qid in paper.questions_unanswered.all %}
{% if qid.id == question.id %}
<li class="active"><a style="width:25%" href="#"data-toggle="tooltip"
@@ -44,6 +45,9 @@
{% if qid in paper.questions_answered.all %}
<li class="disabled"><a style="background-color:#B4B8BA; width:25%" href="#" data-toggle="tooltip" title="{{ qid.description }}" >{{ forloop.counter }}</a></li>
{% endif %}
+ {% else %}
+ <li><a style="width:25%" href="#" data-toggle="tooltip" title="{{ qid.description|striptags }}">{{ forloop.counter }}</a></li>
+ {% endif %}
{% endfor %}
</ul>
<p>Question(s) left: <b>{{ paper.questions_left }}</b></p>