diff options
author | prathamesh | 2014-06-26 15:47:00 +0530 |
---|---|---|
committer | prathamesh | 2014-06-26 15:47:00 +0530 |
commit | bd70b4d7f748eb3f56ac4b8366e02d113c1be3b9 (patch) | |
tree | ae4fe2d8629ad3ccf127720054442b6ea088a63f /testapp/templates/exam/edit_quiz.html | |
parent | 7155dd407f48293d46b0fb45e7d2354bd0982f76 (diff) | |
download | online_test-bd70b4d7f748eb3f56ac4b8366e02d113c1be3b9.tar.gz online_test-bd70b4d7f748eb3f56ac4b8366e02d113c1be3b9.tar.bz2 online_test-bd70b4d7f748eb3f56ac4b8366e02d113c1be3b9.zip |
Changes in edit quiz view to set prerequisite
Diffstat (limited to 'testapp/templates/exam/edit_quiz.html')
-rw-r--r-- | testapp/templates/exam/edit_quiz.html | 5 |
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> |