diff options
Diffstat (limited to 'testapp/templates')
-rw-r--r-- | testapp/templates/exam/add_quiz.html | 2 | ||||
-rw-r--r-- | testapp/templates/manage.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/testapp/templates/exam/add_quiz.html b/testapp/templates/exam/add_quiz.html index 80a52ed..d51d129 100644 --- a/testapp/templates/exam/add_quiz.html +++ b/testapp/templates/exam/add_quiz.html @@ -23,6 +23,6 @@ table th, table td { </table> </center> <center><button class="btn" type="submit" name="save">Save</button> -<button class="btn" type="reset" name="reset">Clear</button> </center> +<button class="btn" type="button" name="button" onClick='location.replace("{{URL_ROOT}}/exam/manage/showquiz/");'>Cancel</button> </center> </form> {% endblock %} diff --git a/testapp/templates/manage.html b/testapp/templates/manage.html index a21e8c4..0cc47ae 100644 --- a/testapp/templates/manage.html +++ b/testapp/templates/manage.html @@ -26,7 +26,7 @@ <h5>Manage</h5> <ul> <li><a href="{{ URL_ROOT }}/exam/manage/questions">Questions</a></li> - <li><a href="{{ URL_ROOT }}/exam/manage/addquiz">Quizzes</a></li> + <li><a href="{{ URL_ROOT }}/exam/manage/showquiz">Quizzes</a></li> <li><a href="{{ URL_ROOT }}/exam/manage/gradeuser">Grade User</a></li> <li><a href="{{ URL_ROOT }}/exam/manage/monitor">Monitor</a></li> </ul> |