blob: aa8b678722d7fc5628f1dabf48876fd0e4bb7704 (
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
|
{% extends "manage.html" %}
{% block title %} Quiz results {% endblock title %}
{% block meta %} <meta http-equiv="refresh" content="30"/> {% endblock meta %}
{% block css %}
<link rel="stylesheet" href="{{ URL_ROOT }}/static/exam/css/question_quiz.css" type="text/css" />
{% endblock %}
{% block subtitle %}
{% if not quizzes and not quiz %}
Quiz Results
{% endif %}
{% if quizzes %}
Available Quizzes
{% endif %}
{% if quiz %}
{{ quiz.description }} Results
{% endif %}
{% endblock %}
{% block manage %}
{% if not quizzes and not quiz %}
<center><h5> No quizzes available. </h5></center>
{% endif %}
{# ############################################################### #}
{# This is rendered when we are just viewing exam/monitor #}
{% if quizzes %}
<ul>
{% for q in quizzes %}
<li><a href="{{URL_ROOT}}/exam/manage/monitor/{{q.id}}/">{{ q.quiz.description }}</a></li>
{% endfor %}
</ul>
{% endif %}
{# ############################################################### #}
{# This is rendered when we are just viewing exam/monitor/quiz_num #}
{% if quiz %}
{% if papers %}
{# <p> Quiz: {{ quiz_name }}</p> #}
<p>Number of papers: {{ papers|length }} </p>
<table border="1" cellpadding="3">
<tr>
<th> Name </th>
<th> Username </th>
<th> Roll number </th>
<th> Institute </th>
<th> Questions answered </th>
<th> Total marks </th>
<th> Attempts </th>
</tr>
{% for paper in papers %}
<tr>
<td> <a href="{{URL_ROOT}}/exam/manage/user_data/{{paper.user.username}}">{{ paper.user.get_full_name.title }}</a> </td>
<td> <a href="{{URL_ROOT}}/exam/manage/user_data/{{paper.user.username}}">{{ paper.user.username }}</a> </td>
<td> {{ paper.profile.roll_number }} </td>
<td> {{ paper.profile.institute }} </td>
<td> {{ paper.get_answered_str }} </td>
<td> {{ paper.get_total_marks }} </td>
<td> {{ paper.answers.count }} </td>
</tr>
{% endfor %}
</table>
{% else %}
<p> No answer papers so far. </p>
{% endif %} {# if papers #}
{% endif %}
{% endblock %}
|