diff options
author | ankitjavalkar | 2015-05-13 14:31:42 +0530 |
---|---|---|
committer | ankitjavalkar | 2015-05-14 15:05:54 +0530 |
commit | 13317f56278969cb6568026d099e15166bfc5d6c (patch) | |
tree | 92255ab0d5ee7fe6ed385a53972ccdc533b943b5 /testapp/exam/views.py | |
parent | 781548f53d864a56d313c04553c60b68c60e87c0 (diff) | |
download | online_test-13317f56278969cb6568026d099e15166bfc5d6c.tar.gz online_test-13317f56278969cb6568026d099e15166bfc5d6c.tar.bz2 online_test-13317f56278969cb6568026d099e15166bfc5d6c.zip |
Fix test case fetching for old questions
Diffstat (limited to 'testapp/exam/views.py')
-rw-r--r-- | testapp/exam/views.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/testapp/exam/views.py b/testapp/exam/views.py index 5b7baac..621ec94 100644 --- a/testapp/exam/views.py +++ b/testapp/exam/views.py @@ -291,6 +291,7 @@ def edit_question(request): description = request.POST.getlist('description') points = request.POST.getlist('points') options = request.POST.getlist('options') + test = request.POST.getlist('test') type = request.POST.getlist('type') active = request.POST.getlist('active') language = request.POST.getlist('language') |