blob: 96370c0feac1be9ab41c37c59f4c3dfe9a2a21d1 (
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
|
{% extends "manage.html" %}
{% block subtitle %}Design Question Paper{% endblock %}
{% block css %}
<link rel="stylesheet" href="{{ URL_ROOT }}/static/exam/css/question_quiz.css" type="text/css" />
<link rel="stylesheet" media="all" type="text/css" href="{{ URL_ROOT }}/static/exam/css/autotaggit.css" />
{% endblock %}
{% block script %}
<script src="/static/taggit_autocomplete_modified/jquery.min.js" type="text/javascript"></script>
<script src="/static/taggit_autocomplete_modified/jquery.autocomplete.js" type="text/javascript"></script>
<script>
function load_data()
{
var value = document.getElementById('mode').value;
if (value == 'Automatic')
{
window.location = "{{ URL_ROOT }}/exam/manage/designquestionpaper/automatic";
}
else if(value == "Manual")
{
window.location = "{{ URL_ROOT }}/exam/manage/designquestionpaper/manual";
}
}
</script>
{% endblock %}
{% block manage %}
<form >
{% csrf_token %}
Select mode to design Question Paper:
<select name='mode' id='mode' onChange='javascript:load_data();'>
<option>Manual</option>
<option>Automatic</option>
</select>
</form>
{% endblock %}
|