summaryrefslogtreecommitdiff
path: root/yaksh/templates/manage.html
blob: f4c524e7a7e045c055619b6923575e4fca0740bd (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
<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" />
   <link rel="stylesheet" href="{{ URL_ROOT }}/static/yaksh/css/font-awesome.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>
<li><a href="{{ URL_ROOT }}/exam/manage/grader"> Grader </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="col-md-12">
         {% block new_manage %}
         {% endblock %}
            </div>
         </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>
                    <h5>Click on the button to Create a Demo course.
                    <a href="" onclick="$('#help').show(); return false;">Help </a></h5>
                    <button class="btn" type="button" onClick='location.replace("{{URL_ROOT}}/exam/manage/create_demo_course");'>Create Demo Course</button>
                    <div style="display: none;" id="help">
                    <ol>
                    <ul>
                    <li>A Demo Course and Demo Quiz will be created (Click Courses link on nav bar to view courses).</li>
                    <li>Some Demo Questions are also created for you (Click Questions link on nav bar to view questions).</li>
                    <li>In Courses you can view Demo Quiz.</li>
                    <li>Click on the Demo Quiz and Click on User Mode or God Mode to take the quiz.
                    </li>
                    <li>You can also edit the Demo quiz.
                    </li>
                    </ul>
                    </p>
                    <a href="" onclick="$('#help').hide(); return false"> Close </a>
                    </div>
                    {% if msg %}
                    <h4>{{ msg }}</h4>
                    {% endif %}
                </center>
                {% if trial_paper %}
                  <h5/> You have trial papers.
                  <table class="bordered-table zebra-striped">
                  <form action="" method="post">
                  {% csrf_token %}
                   {% for paper in trial_paper %}
                  <tr>
                  <td> <input type = "checkbox" name="delete_paper" value = {{paper.id}}></input></td>
                  <td> <a href="{{URL_ROOT}}/exam/manage/gradeuser/{{paper.question_paper.quiz.id}}">{{paper.question_paper.quiz.description}}</td>
                  </tr>
                  {% endfor %}
                  </table>
                  <center><button class="btn" type="submit">Delete Selected</button></center>
                  </form>
                  {% endif %}
{% endblock %}
            </div>
         </div>
     </div>
     <footer>
     <p>&copy; FOSSEE group, IIT Bombay</p>
     </footer>
  </div>

</body>
</html>