blob: 334f6a2c38038e25ff9b5c60a6950534b66b3d8d (
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
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>
{% block title %}
{% endblock %}
</title>
{% block meta %}
<meta charset="utf-8">
<meta name="description" content="">
<meta name="author" content="">
{% endblock %}
<link rel="stylesheet" href="{{ URL_ROOT }}/static/yaksh/css/base.css" type="text/css" />
<link rel="stylesheet" href="{{ URL_ROOT }}/static/yaksh/css/manage.css" type="text/css" />
{% block css %}
{% endblock %}
<script language="JavaScript" type="text/javascript" src="{{ URL_ROOT }}/static/yaksh/js/jquery-1.4.2.min.js"></script>
{% block script %}
{% endblock %}
</head>
<body {% block onload %}{% endblock %}>
<div class="topbar">
<div class="fill">
<div class="container">
<a href="{{ URL_ROOT }}/exam/manage/"><h3 class="brand"><strong>Online Test</h3></strong></a>
<ul>
<li><a href="{{ URL_ROOT }}/exam/manage/questions">Questions</a></li>
<li><a href="{{ URL_ROOT }}/exam/manage/gradeuser">Grade User</a></li>
<li><a href="{{ URL_ROOT }}/exam/manage/monitor">Monitor</a></li>
<li><a href="{{ URL_ROOT }}/exam/manage/courses">Courses</a></li>
<li><a href="{{ URL_ROOT }}/exam/viewprofile">My Profile</a></li>
<li><a href="{{ URL_ROOT }}/exam/changepassword">Change Password</a></li>
</ul>
<ul style="float:right;">
<li><strong><a style='cursor:pointer' onClick='location.replace("{{URL_ROOT}}/exam/complete/");'>Log out</a></strong></li>
</ul>
</div>
</div>
</div>
<div class="container">
<div class="content">
<div class="page-header">
<h3><center>{% block subtitle %}Welcome {{ user.first_name.title }} {{user.last_name.title}} !{% endblock %}</center></h3><br>
</div>
<div class=row>
<div class=span14>
{% block manage %}
<center><h4>List of quizzes! Click on the given links to have a look at answer papers for a quiz.</h4></center>
<hr>
<table class="bordered-table zebra-striped">
<th>Quiz</th>
<th>Taken By</th>
<th>No. of users Passed</th>
<th>No. of users Failed</th>
{% for paper, answer_papers, users_passed, users_failed in users_per_paper %}
<tr>
<td>
<a href="{{URL_ROOT}}/exam/manage/monitor/{{paper.id}}/">{{ paper.quiz.description }}</a>
</td>
<td>
{{ answer_papers|length }} user(s)
</td>
<td>
{{ users_passed }}
</td>
<td>
{{ users_failed }}
</td>
</tr>
{% endfor %}
</table>
<hr>
<center>
<h4>Moderator's Dashboard!</h4>
<h5>Click on the button given below to add a new course.</h5>
<button class="btn" type="button" onClick='location.replace("{{URL_ROOT}}/exam/manage/add_course");'>Add New Course</button>
</center>
{% if trial_quiz %}
<h5/> You have trial papers.
<table class="bordered-table zebra-striped">
<form action="" method="post">
{% csrf_token %}
{% for quiz in trial_quiz %}
<tr>
<td> <input type = "checkbox" name="delete_quiz" value = {{quiz.id}}></input></td>
<td> <a href="{{URL_ROOT}}/exam/manage/gradeuser/{{quiz.id}}">{{quiz.description}}</td>
</tr>
{% endfor %}
</table>
<center><button class="btn" type="submit">Delete Selected</button></center>
</form>
{% endif %}
{% endblock %}
</div>
</div>
</div>
<footer>
<p>© FOSSEE group, IIT Bombay</p>
</footer>
</div>
</body>
</html>
|