summaryrefslogtreecommitdiff
path: root/testapp/exam/templates/manage.html
blob: 1db8a7837f7b4662a4c125adb19f15eae1fb1729 (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
<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/exam/css/base.css" type="text/css" />
   <link rel="stylesheet" href="{{ URL_ROOT }}/static/exam/css/manage.css" type="text/css" />
   {% block css %}
   {% endblock %}

   {% 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/showquiz">Quizzes</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>
        </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 quiz.</h5>
                    <button class="btn" type="button" onClick='location.replace("{{URL_ROOT}}/exam/manage/addquiz");'>Add New Quiz</button>
                </center>
{% endblock %}
            </div>
         </div>
     </div>
     <footer>
     <p>&copy; FOSSEE group, IIT Bombay</p>
     </footer>
  </div>

</body>
</html>