diff options
author | hardythe1 | 2012-03-21 17:18:29 +0530 |
---|---|---|
committer | hardythe1 | 2012-03-21 17:18:29 +0530 |
commit | d6b315e816525ee114a22e1c66a35b5e30e86258 (patch) | |
tree | af6a22d442f49d506989b89647c98824af108cab /testapp/templates | |
parent | 8bedc83e30c80636df18b301a84c69cb6a543e53 (diff) | |
parent | 2f21a4a007ae9b51fadd7832fe90506f19e309e2 (diff) | |
download | online_test-d6b315e816525ee114a22e1c66a35b5e30e86258.tar.gz online_test-d6b315e816525ee114a22e1c66a35b5e30e86258.tar.bz2 online_test-d6b315e816525ee114a22e1c66a35b5e30e86258.zip |
Merge branch 'admin_module' of github.com:hardythe1/online_test into admin_module
Diffstat (limited to 'testapp/templates')
-rw-r--r-- | testapp/templates/exam/add_question.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/testapp/templates/exam/add_question.html b/testapp/templates/exam/add_question.html index f832d46..3f8637e 100644 --- a/testapp/templates/exam/add_question.html +++ b/testapp/templates/exam/add_question.html @@ -42,6 +42,7 @@ function textareaformat() document.getElementById('id_type').setAttribute('class','select-type'); document.getElementById('id_points').setAttribute('class','mini-text'); + document.getElementById('id_tags').setAttribute('class','tag-text'); $('#id_description').bind('focus', function( event ){ document.getElementById("id_description").rows=5; @@ -134,7 +135,10 @@ function autosubmit() <tr><td><strong>Rendered: </strong><td><p id='my'></p> <tr><td>Description: <td>{{ form.description}} {{form.description.errors}} <tr><td>Test: <td>{{ form.test }}{{form.test.errors}} - <tr><td id='label_option'>Options: <td>{{ form.options }} {{form.options.errors}} + <tr><td>Tags: <td>{{ form.tags }} + <tr><td id='label_option'>Options: <td>{{ form.options }} {{form.options.errors}} + + </table></center> <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> |