diff options
author | ankitjavalkar | 2015-07-23 16:32:13 +0530 |
---|---|---|
committer | ankitjavalkar | 2015-08-05 12:00:54 +0530 |
commit | dbab99bc13b8483c24706e47a9a0926508e3c332 (patch) | |
tree | 27fc89e79ce8ce8332fc7288993f6c7ff2537bb3 /testapp/exam/views.py | |
parent | 214d8696fafee4e38c6bf039315aac37e4cd2e2b (diff) | |
download | online_test-dbab99bc13b8483c24706e47a9a0926508e3c332.tar.gz online_test-dbab99bc13b8483c24706e47a9a0926508e3c332.tar.bz2 online_test-dbab99bc13b8483c24706e47a9a0926508e3c332.zip |
Add filters: Minor fixes
Diffstat (limited to 'testapp/exam/views.py')
-rw-r--r-- | testapp/exam/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testapp/exam/views.py b/testapp/exam/views.py index e1c9dc5..f39f3c1 100644 --- a/testapp/exam/views.py +++ b/testapp/exam/views.py @@ -1262,7 +1262,7 @@ def ajax_questions_filter(request): if question_type != "select": filter_dict['type'] = str(question_type) - if marks != "": + if marks != "select": filter_dict['points'] = marks if language != "select": |