From 2b6b595ca8652696ab9059add8ea54661cab5f31 Mon Sep 17 00:00:00 2001
From: hardythe1
Date: Tue, 21 Feb 2012 12:38:38 +0530
Subject: views for editing quiz and questions

---
 testapp/templates/exam/show_quiz.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'testapp/templates/exam/show_quiz.html')

diff --git a/testapp/templates/exam/show_quiz.html b/testapp/templates/exam/show_quiz.html
index bbea77f..2e9059d 100644
--- a/testapp/templates/exam/show_quiz.html
+++ b/testapp/templates/exam/show_quiz.html
@@ -35,7 +35,7 @@ function my_confirm(frm)
 {% csrf_token %}
 {% for quiz in quizzes %}
 
-<input type=checkbox name='quiz' value={{quiz.id}} />&nbsp;&nbsp;<a href="{{URL_ROOT}}/exam/manage/monitor/{{quiz.id}}/">{{ quiz.description }}</a><br>
+<input type=checkbox name='quiz' value={{quiz.id}} />&nbsp;&nbsp;<a href="{{URL_ROOT}}/exam/manage/addquiz/{{quiz.id}}/">{{ quiz.description }}</a><br>
 {% endfor %}
 <br><br>
 <button class="btn" type="button" onClick='location.replace("{{URL_ROOT}}/exam/manage/addquiz");'>Add New Quiz</button>&nbsp;&nbsp;<button class="btn" type="submit" name="delete" onClick="my_confirm(frm);">Delete</button>
-- 
cgit