summaryrefslogtreecommitdiff
path: root/testapp/templates/exam/add_question.html
diff options
context:
space:
mode:
authorhardythe12012-02-24 16:16:38 +0530
committerhardythe12012-02-24 16:16:38 +0530
commitb1fbf5b02280de5b78b0249e777a179e34b50b98 (patch)
treef133bd5e556d4d0e8bbc94c9ffbac22bcc46bb31 /testapp/templates/exam/add_question.html
parentdd3fd7b8c58d836baba24441e7d55c6d51858eab (diff)
downloadonline_test-b1fbf5b02280de5b78b0249e777a179e34b50b98.tar.gz
online_test-b1fbf5b02280de5b78b0249e777a179e34b50b98.tar.bz2
online_test-b1fbf5b02280de5b78b0249e777a179e34b50b98.zip
formating and identation
Diffstat (limited to 'testapp/templates/exam/add_question.html')
-rw-r--r--testapp/templates/exam/add_question.html32
1 files changed, 15 insertions, 17 deletions
diff --git a/testapp/templates/exam/add_question.html b/testapp/templates/exam/add_question.html
index 2d42b34..d5503b5 100644
--- a/testapp/templates/exam/add_question.html
+++ b/testapp/templates/exam/add_question.html
@@ -1,27 +1,25 @@
{% extends "manage.html" %}
-{% block subtitle %}
-Add Question
-{% endblock %}
+{% block subtitle %}Add Question{% endblock %}
{% block manage %}
-<style type="text/css">
-
-table th, table td {
- padding: 10px 10px 9px;
- line-height: 18px;
- text-align: left;
-}
-</style>
+ <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>
-<button class="btn" type="button" name="button" onClick='location.replace("{{URL_ROOT}}/exam/manage/questions/");'>Cancel</button> </center>
+ {% csrf_token %}
+ <center><table class=span1>
+ {{ form.as_table }}
+ </table>
+ <center><button class="btn" type="submit" name="savequestion">Save</button>
+ <button class="btn" type="button" name="button" onClick='location.replace("{{URL_ROOT}}/exam/manage/questions/");'>Cancel</button> </center>
</form>
{% endblock %}