diff options
author | ankitjavalkar | 2015-09-07 18:01:59 +0530 |
---|---|---|
committer | ankitjavalkar | 2015-09-07 18:01:59 +0530 |
commit | e7e4a526e555e5a5dbe27fdc2ecfb85b537387ba (patch) | |
tree | 91eff00168b27c44aeabc4a6767eb487d2c66d6c /testapp/exam/templates | |
parent | ba1f02c1129859fe32577e3da67bee6374ed5190 (diff) | |
download | online_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.html | 15 |
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}}"> <a href="{{URL_ROOT}}/exam/manage/addquestion/{{ question.id }}">{{ question }}</a><br> - </label> - </li> - {% endfor %} - </ul> -</div> |