summaryrefslogtreecommitdiff
path: root/testapp/templates
diff options
context:
space:
mode:
authorPrabhu Ramachandran2014-06-27 19:41:15 +0530
committerPrabhu Ramachandran2014-06-27 19:41:15 +0530
commit6f27cd40d63300e3294e170daee8c058788c5fa0 (patch)
tree624b03be9921098aeffaea845b857cc357a66705 /testapp/templates
parentfa402a2c9a34a1728f863ddcbab62fa8e030099e (diff)
parent3c82dd0faf2f1273cb590b360a9696a973b30720 (diff)
downloadonline_test-6f27cd40d63300e3294e170daee8c058788c5fa0.tar.gz
online_test-6f27cd40d63300e3294e170daee8c058788c5fa0.tar.bz2
online_test-6f27cd40d63300e3294e170daee8c058788c5fa0.zip
Merge pull request #26 from prathamesh920/model_modification
Model modification
Diffstat (limited to 'testapp/templates')
-rw-r--r--testapp/templates/exam/edit_quiz.html5
1 files changed, 4 insertions, 1 deletions
diff --git a/testapp/templates/exam/edit_quiz.html b/testapp/templates/exam/edit_quiz.html
index cf80df1..6445907 100644
--- a/testapp/templates/exam/edit_quiz.html
+++ b/testapp/templates/exam/edit_quiz.html
@@ -20,9 +20,12 @@
<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>Duration: <td> {{ form.duration }}<br>{{form.duration.help_text}}
<tr><td><b>Active: <td> {{ form.active }}
<tr><td><b>Description: <td> {{ form.description }}
+ <tr><td><b>Passing Criteria: <td> {{ form.pass_criteria }}<br>{{form.pass_criteria.help_text}}
+ <tr><td><b>Language: <td> {{ form.language }}
+ <tr><td><b>Prerequisite: <td> {{ form.prerequisite }}
<hr>
{% endfor %}
</table>