diff options
author | jayparikh111 | 2012-11-01 13:43:21 +0530 |
---|---|---|
committer | jayparikh111 | 2012-11-01 13:43:21 +0530 |
commit | 56bd985701bee1e4c9ed8a694c5b2ff1258e2aad (patch) | |
tree | d69abb58318e41cf38d4cb3d11f99e32c1a8c8c9 /testapp/templates/exam/edit_quiz.html | |
parent | cad1366b66a4079a22eb3a6f0b41c2705a6e0a0b (diff) | |
download | online_test-56bd985701bee1e4c9ed8a694c5b2ff1258e2aad.tar.gz online_test-56bd985701bee1e4c9ed8a694c5b2ff1258e2aad.tar.bz2 online_test-56bd985701bee1e4c9ed8a694c5b2ff1258e2aad.zip |
Removed Global variables for Quiz & Questions
Diffstat (limited to 'testapp/templates/exam/edit_quiz.html')
-rw-r--r-- | testapp/templates/exam/edit_quiz.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/testapp/templates/exam/edit_quiz.html b/testapp/templates/exam/edit_quiz.html index 8e4917d..0ea4aae 100644 --- a/testapp/templates/exam/edit_quiz.html +++ b/testapp/templates/exam/edit_quiz.html @@ -31,6 +31,9 @@ {% endfor %} </table> </center> +{% for i in data %} + <input type=hidden name='quizzes' value="{{ i }}" /> +{% endfor %} <center><button class="btn" type="submit" name="save">Save</button> <button class="btn" type="button" name="button" onClick='location.replace("{{URL_ROOT}}/exam/manage/showquiz/");'>Cancel</button> </center> </form> |