diff options
author | hardythe1 | 2012-03-22 17:50:34 +0530 |
---|---|---|
committer | hardythe1 | 2012-03-22 17:50:34 +0530 |
commit | 246478f4ef75ae713e96a64d210bd3710bed3df9 (patch) | |
tree | c09755a4861bb734b035c685e2f5782952e3d9b1 /testapp/templates/exam/edit_quiz.html | |
parent | b1ba290f249d84989cb3cc38d018482794582a46 (diff) | |
download | online_test-246478f4ef75ae713e96a64d210bd3710bed3df9.tar.gz online_test-246478f4ef75ae713e96a64d210bd3710bed3df9.tar.bz2 online_test-246478f4ef75ae713e96a64d210bd3710bed3df9.zip |
Tagging functionality in quiz
Diffstat (limited to 'testapp/templates/exam/edit_quiz.html')
-rw-r--r-- | testapp/templates/exam/edit_quiz.html | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/testapp/templates/exam/edit_quiz.html b/testapp/templates/exam/edit_quiz.html index 2ab01bb..8e4917d 100644 --- a/testapp/templates/exam/edit_quiz.html +++ b/testapp/templates/exam/edit_quiz.html @@ -5,14 +5,17 @@ {% block css %} <link rel="stylesheet" href="{{ URL_ROOT }}/static/exam/css/question_quiz.css" type="text/css" /> -<style type='text/css'> -table th, table td - { - text-align: left; - } -</style> +<link rel="stylesheet" media="all" type="text/css" href="{{ URL_ROOT }}/static/exam/css/autotaggit.css" /> {% endblock %} +{% block script %} +<script src="{{ URL_ROOT }}/static/exam/js/edit_quiz.js"></script> +<script src="/static/taggit_autocomplete_modified/jquery.min.js" type="text/javascript"></script> +<script src="/static/taggit_autocomplete_modified/jquery.autocomplete.js" type="text/javascript"></script> +{% endblock %} + +{% block onload %} onload = 'javascript:form_load();' {% endblock %} + {% block manage %} <form name=frm action="{{URL_ROOT}}/exam/manage/editquiz/" method="post"> {% csrf_token %} @@ -22,6 +25,7 @@ table th, table td <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>Tags: <td> {{ form.tags }} <tr><td><b>Description: <td> {{ form.description }} <hr> {% endfor %} |