blob: 001b2fe694c1339bb7b6656486de31c5475c249c (
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
|
{% extends "manage.html" %}
{% block title %} Quiz List {% endblock title %}
{% block script %}
<script type='text/javascript'>
function my_confirm(frm)
{
var r = confirm("Are you Sure ?");
if(r==false)
{
for(i=0;i<frm.quiz.length;i++)
{
frm.quiz[i].checked=false;
}
location.replace("{{URL_ROOT}}/exam/manage/showquiz");
}
}
</script>
{% endblock %}
{% block manage %}
{% if not quizzes and not quiz %}
<h5><center> Available Quiz </center></h5>
<center><h5> No quizzes available. </h5></center>
{% endif %}
{# ############################################################### #}
{# This is rendered when we are just viewing exam/monitor #}
{% if quizzes %}
<center><h3>Quiz List</h3></center>
<form method="post" action="" name='frm'>
{% csrf_token %}
{% for quiz in quizzes %}
<input type=checkbox name='quiz' value={{quiz.id}} /> <a href="{{URL_ROOT}}/exam/manage/addquiz/{{quiz.id}}/">{{ quiz.description }}</a><br>
{% endfor %}
<br><br>
<button class="btn" type="button" onClick='location.replace("{{URL_ROOT}}/exam/manage/addquiz");'>Add New Quiz</button> <button class="btn" type="submit" name="delete" onClick="my_confirm(frm);">Delete</button>
</form>
{% endif %}
{% endblock %}
|