summaryrefslogtreecommitdiff
path: root/yaksh/views.py
diff options
context:
space:
mode:
authormahesh2018-01-16 01:13:49 +0530
committermaheshgudi2018-03-16 15:17:20 +0530
commit7fc24f1d4fe9208867ab38d600fa35a3c7b31386 (patch)
treea9ba8019171ee6b2a030c55fc82da4d7527066ac /yaksh/views.py
parent9c5464a6edaaf2aaafc0e42fe88c8734fd952e12 (diff)
downloadonline_test-7fc24f1d4fe9208867ab38d600fa35a3c7b31386.tar.gz
online_test-7fc24f1d4fe9208867ab38d600fa35a3c7b31386.tar.bz2
online_test-7fc24f1d4fe9208867ab38d600fa35a3c7b31386.zip
Add test case order in view_answerpaper
Diffstat (limited to 'yaksh/views.py')
-rw-r--r--yaksh/views.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/yaksh/views.py b/yaksh/views.py
index 17cfb13..27a07d2 100644
--- a/yaksh/views.py
+++ b/yaksh/views.py
@@ -616,7 +616,10 @@ def show_question(request, question, paper, error_message=None, notification=Non
if question.type == "code" else
'You have already attempted this question'
)
- test_cases = question.get_ordered_test_cases(paper)
+ if question.type in ['mcc', 'mcq']:
+ test_cases = question.get_ordered_test_cases(paper)
+ else:
+ test_cases = question.get_test_cases()
files = FileUpload.objects.filter(question_id=question.id, hide=False)
course = Course.objects.get(id=course_id)
module = course.learning_module.get(id=module_id)