diff options
author | jayparikh111 | 2012-11-08 12:34:14 +0530 |
---|---|---|
committer | jayparikh111 | 2012-11-08 12:34:14 +0530 |
commit | 370440db8a77969b7cd9c4a5803e6527841b55e4 (patch) | |
tree | faa101adfb6fd8c59da0c66e15ef21d6edea5461 /testapp/templates/exam/editquestionpaper.html | |
parent | f707474335496cdb4c7b921be0675cb83f4b12d9 (diff) | |
download | online_test-370440db8a77969b7cd9c4a5803e6527841b55e4.tar.gz online_test-370440db8a77969b7cd9c4a5803e6527841b55e4.tar.bz2 online_test-370440db8a77969b7cd9c4a5803e6527841b55e4.zip |
removed global set varible
Diffstat (limited to 'testapp/templates/exam/editquestionpaper.html')
-rw-r--r-- | testapp/templates/exam/editquestionpaper.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testapp/templates/exam/editquestionpaper.html b/testapp/templates/exam/editquestionpaper.html index 68a9c22..ee36cc8 100644 --- a/testapp/templates/exam/editquestionpaper.html +++ b/testapp/templates/exam/editquestionpaper.html @@ -12,7 +12,7 @@ {% csrf_token %} {% for i in papers.questions %} -<input type="checkbox" name="papers" value="{{ i.id }}"> <a href="{{URL_ROOT}}/exam/manage/editquestionpaper/{{ i.id }}">{{ i.summary}}</a><br> +<input type="checkbox" name="papers" value="{{ i.id }}"> <a href="{{URL_ROOT}}/exam/manage/addquestion/{{ i.id }}">{{ i.summary}}</a><br> {% endfor %} <br> <button class="btn" type="submit" name=add value=add>Add Question</button> |