diff options
Diffstat (limited to 'testapp/templates/exam/show_quiz.html')
-rw-r--r-- | testapp/templates/exam/show_quiz.html | 28 |
1 files changed, 2 insertions, 26 deletions
diff --git a/testapp/templates/exam/show_quiz.html b/testapp/templates/exam/show_quiz.html index 684cfd2..1a4c289 100644 --- a/testapp/templates/exam/show_quiz.html +++ b/testapp/templates/exam/show_quiz.html @@ -3,33 +3,9 @@ {% block title %} Quiz List {% endblock title %} {% block script %} - <script type='text/javascript'> - function my_confirm(frm) - { - var r = confirm("Are you Sure ?"); - if(r==false) - { - for(i=0;i<frm.quiz.length;i++) - { - frm.quiz[i].checked=false; - } - location.replace("{{URL_ROOT}}/exam/manage/showquiz"); - } - } - function confirm_edit(frm) - { - var n = 0; - for (var i =0;i<frm.quiz.length;i++) - { - if (frm.quiz[i].checked == false) - n = n + 1 ; - } - if(n == frm.quiz.length) - location.replace("{{URL_ROOT}}/exam/manage/showquiz"); - } - - </script> +<script src="{{ URL_ROOT }}/static/exam/js/show_quiz.js"></script> {% endblock %} + {% block subtitle %} Quiz List {% endblock %} {% block manage %} {% if not quizzes and not quiz %} |