summaryrefslogtreecommitdiff
path: root/testapp/templates/exam/edit_quiz.html
diff options
context:
space:
mode:
authorhardythe12012-03-20 12:44:43 +0530
committerhardythe12012-03-20 12:44:43 +0530
commite524bef336df95fd307d045af37c379bccf3ea14 (patch)
tree62b677d6c94f323f880d77745e57a25e844b4ba9 /testapp/templates/exam/edit_quiz.html
parent0e6e72fb37f1a586728c997cd5e9c5fadf794823 (diff)
downloadonline_test-e524bef336df95fd307d045af37c379bccf3ea14.tar.gz
online_test-e524bef336df95fd307d045af37c379bccf3ea14.tar.bz2
online_test-e524bef336df95fd307d045af37c379bccf3ea14.zip
minor UI changes
Diffstat (limited to 'testapp/templates/exam/edit_quiz.html')
-rw-r--r--testapp/templates/exam/edit_quiz.html18
1 files changed, 8 insertions, 10 deletions
diff --git a/testapp/templates/exam/edit_quiz.html b/testapp/templates/exam/edit_quiz.html
index d513e7a..2ab01bb 100644
--- a/testapp/templates/exam/edit_quiz.html
+++ b/testapp/templates/exam/edit_quiz.html
@@ -8,7 +8,7 @@
<style type='text/css'>
table th, table td
{
- text-align: center;
+ text-align: left;
}
</style>
{% endblock %}
@@ -17,15 +17,13 @@ table th, table td
<form name=frm action="{{URL_ROOT}}/exam/manage/editquiz/" method="post">
{% csrf_token %}
<center>
- <table>
- <tr>
- <td><strong> Start Date <td><strong> Duration <td> <strong>Active <td> <strong>Description </strong>
- </tr>
- {% for form in forms %}
-
- <tr>
- <td> {{ form.start_date}} <td> {{ form.duration }} <td> {{ form.active }} <td> {{ form.description }}
- </tr>
+ <table class=span1>
+ {% for form in forms %}
+ <tr><td><b>Start Date: <td>{{ form.start_date}}
+ <tr><td><b>Duration: <td> {{ form.duration }}
+ <tr><td><b>Active: <td> {{ form.active }}
+ <tr><td><b>Description: <td> {{ form.description }}
+ <hr>
{% endfor %}
</table>
</center>