summaryrefslogtreecommitdiff
path: root/testapp/templates/exam/add_quiz.html
blob: 80a52edef580e8aa3092ddc90bcfad545a31b1f9 (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
{% extends "manage.html" %}


{% block subtitle %} 
Add Quiz
{% endblock %}

{% block manage %}

<style type='text/css'>

table th, table td {
  padding: 10px 10px 9px;
  line-height: 18px;
  text-align: left;
}
</style>
<form name=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="reset" name="reset">Clear</button> </center>
</form>
{% endblock %}