summaryrefslogtreecommitdiff
path: root/testapp/templates/exam/add_question.html
diff options
context:
space:
mode:
Diffstat (limited to 'testapp/templates/exam/add_question.html')
-rw-r--r--testapp/templates/exam/add_question.html21
1 files changed, 19 insertions, 2 deletions
diff --git a/testapp/templates/exam/add_question.html b/testapp/templates/exam/add_question.html
index fb5d38b..a0ba14d 100644
--- a/testapp/templates/exam/add_question.html
+++ b/testapp/templates/exam/add_question.html
@@ -1,9 +1,26 @@
{% extends "manage.html" %}
-{% block subtitle %}
+{% block subtitle %}
Add Question
{% endblock %}
+
{% block manage %}
-<p>Add Question
+<style type="text/css">
+
+table th, table td {
+ padding: 10px 10px 9px;
+ line-height: 18px;
+ text-align: left;
+}
+</style>
+
+<form action="" method="post">
+{% csrf_token %}
+<center><table class=span1>
+{{ form.as_table }}
+</table>
+<center><button class="btn" type="submit" name="savequestion">Save</button>
+</form>
{% endblock %}
+