From 453a5d8f191b62af45426d5c98a99552c34ba396 Mon Sep 17 00:00:00 2001 From: maheshgudi Date: Mon, 5 Feb 2018 17:06:09 +0530 Subject: Include Rebase changes from shuffle testcases --- yaksh/views.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'yaksh/views.py') diff --git a/yaksh/views.py b/yaksh/views.py index 5c88391..9a66f09 100644 --- a/yaksh/views.py +++ b/yaksh/views.py @@ -242,6 +242,8 @@ def add_question(request, question_id=None): if qform.is_valid(): question = qform.save(commit=False) question.user = user + if question.type == "arrange": + question.shuffle_testcases = True question.save() # many-to-many field save function used to save the tags qform.save_m2m() @@ -616,7 +618,7 @@ def show_question(request, question, paper, error_message=None, notification=Non if question.type == "code" else 'You have already attempted this question' ) - if question.type in ['mcc', 'mcq']: + if question.type in ['mcc', 'mcq', 'arrange']: test_cases = question.get_ordered_test_cases(paper) else: test_cases = question.get_test_cases() -- cgit