summaryrefslogtreecommitdiff
path: root/testapp/exam/templates
diff options
context:
space:
mode:
authorankitjavalkar2015-09-07 18:01:59 +0530
committerankitjavalkar2015-09-07 18:01:59 +0530
commite7e4a526e555e5a5dbe27fdc2ecfb85b537387ba (patch)
tree91eff00168b27c44aeabc4a6767eb487d2c66d6c /testapp/exam/templates
parentba1f02c1129859fe32577e3da67bee6374ed5190 (diff)
downloadonline_test-e7e4a526e555e5a5dbe27fdc2ecfb85b537387ba.tar.gz
online_test-e7e4a526e555e5a5dbe27fdc2ecfb85b537387ba.tar.bz2
online_test-e7e4a526e555e5a5dbe27fdc2ecfb85b537387ba.zip
remove old exam dir
Diffstat (limited to 'testapp/exam/templates')
-rw-r--r--testapp/exam/templates/exam/ajax_question_filter.html15
1 files changed, 0 insertions, 15 deletions
diff --git a/testapp/exam/templates/exam/ajax_question_filter.html b/testapp/exam/templates/exam/ajax_question_filter.html
deleted file mode 100644
index 11bf660..0000000
--- a/testapp/exam/templates/exam/ajax_question_filter.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<div id="questions">
- {% if questions %}
- <h5 class="highlight"><input type="checkbox" id="checkall" class="ignore"> Select All </h5>
- {% endif %}
- <ul class="inputs-list">
-
- {% for question in questions %}
- <li>
- <label>
- <input type="checkbox" name="question" data-qid="{{question.id}}">&nbsp;&nbsp;<a href="{{URL_ROOT}}/exam/manage/addquestion/{{ question.id }}">{{ question }}</a><br>
- </label>
- </li>
- {% endfor %}
- </ul>
-</div>