blob: c45292975c79bc7b8c3aefed4f42dd9c4bddd3e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
|
{% extends "base.html" %}
{% load custom_filters %}
{% load custom_filters %}
{% block nav %}
<div class="container-fluid yakshnav">
<nav class="navbar fixed-top navbar-expand-lg yakshheading yakshnav">
<div class="container">
<button class="navbar-toggler navbar-dark" type="button" data-toggle="collapse" data-target="#myNavbar" aria-controls="myNavbar" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon" style="color: white"></span>
</button>
<a class="navbar-brand">
<img src="{{ URL_ROOT }}/static/yaksh/images/yaksh_banner.png" alt="YAKSH" style="margin-top: -3px; margin-left:-15px">
</img>
</a>
<div class="collapse navbar-collapse col-md-6" id="myNavbar">
<div class="nav nav-pills nav-fill ml-auto">
<span class="time-div nav-item" id="time_left" ></span>
<form id="logout" action="{{URL_ROOT}}/exam/quit/{{ paper.attempt_number }}/{{module.id}}/{{ paper.question_paper.id }}/{{course.id}}/" method="post" class="ml-auto">
{% csrf_token %}
<span class="nav-item"><button class="nav-link btn-danger" type="submit" name="quit">
{% if paper.questions_unanswered.all %}
Quit {{ quiz_type }}
{% else %}
Finish {{ quiz_type }}
{% endif %}
<span class="fa fa-power-off"></span></button></span>
</form>
</div>
</div><!-- /.navbar -->
</div><!-- /.container -->
</nav><!-- /.navbar -->
</div>
{% endblock %}
{% block content %}
<div class="container-fluid">
<div class="row">
<!-- Side bar -->
<div class="col-md-3 yakshlabel collapse" id="sidebar">
<center>
<b class="yakshheading">{{course.name}}</b><br>
{{ paper.question_paper.quiz.description }}</h4>
<hr>
</center>
<div class="yakshwell">
<p class="text-center">Question Navigator</p>
<div>
{% for qid in paper.get_all_ordered_questions %}
{%if paper.question_paper.quiz.allow_skip %}
{% if qid in paper.get_questions_unanswered %}
{% if qid.id == question.id %}
<a class="active btn btn-outline-success " href="#"data-toggle="tooltip"
title="{{ qid.description|striptags }}"
onclick="call_skip('{{ URL_ROOT }}/exam/{{ question.id }}/skip/{{ qid.id }}/{{ paper.attempt_number }}/{{ module.id }}/{{ paper.question_paper.id }}/{{course.id}}/')">{{ forloop.counter }}</a>
{% else %}
<a class=" btn btn-outline-success " href="#" data-toggle="tooltip" title="{{ qid.description|striptags }}"
onclick="call_skip('{{ URL_ROOT }}/exam/{{ question.id }}/skip/{{ qid.id }}/{{ paper.attempt_number }}/{{ module.id }}/{{ paper.question_paper.id }}/{{course.id}}/')">{{ forloop.counter }}</a>
{% endif %}
{% endif %}
{% if qid in paper.get_questions_answered %}
<a class=" btn btn-outline-success " style="background-color:#B4B8BA;" href="#" data-toggle="tooltip"
onclick="call_skip('{{ URL_ROOT }}/exam/{{ question.id }}/skip/{{ qid.id }}/{{ paper.attempt_number }}/{{ module.id }}/{{ paper.question_paper.id }}/{{course.id}}/')"
title="{{ qid.description }}">{{ forloop.counter }}</a>
{% endif %}
{% else %}
{% if qid.id == question.id %}
<a class="active btn btn-outline-success " data-toggle="tooltip" title="{{ qid.description|striptags }}">{{ forloop.counter }}</a>
{% elif qid in paper.get_questions_answered %}
<a class=" btn btn-outline-success " style="background-color:#B4B8BA;" href="#" data-toggle="tooltip"
onclick="call_skip('{{ URL_ROOT }}/exam/{{ question.id }}/skip/{{ qid.id }}/{{ paper.attempt_number }}/{{ module.id }}/{{ paper.question_paper.id }}/{{course.id}}/')"
title="{{ qid.description }}">{{ forloop.counter }}</a>
{% else %}
<a class="disabled btn btn-outline-success " data-toggle="tooltip" title="{{ qid.description|striptags }}">{{ forloop.counter }}</a>
{% endif %}
{% endif %}
{% endfor %}
</div>
<br>
<p class="text-center">Question(s) left: <b>{{ paper.questions_left }}</b></p>
</div>
<br>
<div class="">
<div class="">
<div class="">
{% for types in question_types %}
{% get_questions_by_type paper.get_all_ordered_questions types as questions_by_type %}
{% if types == "mcq" %} Single Correct Choice
{% elif types == "mcc" %} Multiple Correct Choice
{% elif types == "code" %} Programming
{% elif types == "upload" %} Assignment Upload
{% elif types == "integer" %} Integer Blanks
{% elif types == "string" %} String Blanks
{% elif types == "float" %} Float Blanks
{% elif types == "arrange" %} Arranging Options
{% endif %}
--->
<b> {% for question in questions_by_type %} {{question.id}} {%endfor%} </b>
<br>
{%endfor%}
</div>
</div>
</div>
</div> <!--end of sidebar -->
<a href="#sidebar" data-toggle="collapse" id="sidebaricon"><i class="fa fa-navicon fa-lg"></i></a>
<main class="col" id="sidebarbody">
<div class="container-fluid yakshwell">
{% block main %}
{% endblock %}
</div>
</main>
</div>
</div>
{% endblock %}
{% block footer %}
<!--footer-->
<footer class="container-fluid yakshsidebarfooter text-center">
<div class="row justify-content-center">
<div class="col-sm-5 ">
{% if user %}
{% block info %}
<b>{{user.get_full_name|title}}</b> with Roll no. <b>{{user.profile.roll_number}}</b> is logged in as <b>{{user.username}}</b>
{% endblock %}
{% endif %}
</div>
<div class="col-sm-2">
|
</div>
<div class="col-sm-4 text-left">
<b>Any Queries?</b> Email : info@fossee.in
</div>
</div>
</footer>
<!--footer end-->
{% endblock %}
|