blob: fe99ce65f9c743c5fb1660e1ad63b0bf0cfa34d7 (
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
|
{% extends "manage.html" %}
{% block subtitle %}Add Quiz{% endblock %}
{% block css %}
<link rel="stylesheet" href="{{ URL_ROOT }}/static/exam/css/question_quiz.css" type="text/css" />
{% endblock %}
{% block script %}
<script type='text/javascript'>
function test()
{
document.getElementById('id_description').onFocus="javascript:test2()";
}
</script>
{% endblock %}
{% block onload %} onload="javascript:test();" {% endblock %}
{% block manage %}
<form name=frm id=frm action="" method="post" >
{% csrf_token %}
<center>
<table class=span1>
{{ form.as_table }}
</table>
</center>
<center><button class="btn" type="submit" name="save">Save</button>
<button class="btn" type="button" name="button" onClick="javascript:test()">Cancel</button> </center>
<!--button class="btn" type="button" name="button" onClick='location.replace("{{URL_ROOT}}/exam/manage/showquiz/");'>Cancel</button> </center-->
</form>
{% endblock %}
|