diff options
author | maheshgudi | 2017-01-11 18:18:06 +0530 |
---|---|---|
committer | maheshgudi | 2017-03-02 20:36:26 +0530 |
commit | 059034c0ec77d130eeb55af62c456773c2a64b2a (patch) | |
tree | ae58764c7a564584584a58866ee03e77a73b9bb4 | |
parent | b001bc98db69e1ef1926b0f2103bf5a291682f93 (diff) | |
download | online_test-059034c0ec77d130eeb55af62c456773c2a64b2a.tar.gz online_test-059034c0ec77d130eeb55af62c456773c2a64b2a.tar.bz2 online_test-059034c0ec77d130eeb55af62c456773c2a64b2a.zip |
changed mcq to single correct choice
-rw-r--r-- | yaksh/models.py | 2 | ||||
-rw-r--r-- | yaksh/templates/yaksh/question.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/yaksh/models.py b/yaksh/models.py index 2d84622..4292cc0 100644 --- a/yaksh/models.py +++ b/yaksh/models.py @@ -36,7 +36,7 @@ languages = ( ) question_types = ( - ("mcq", "Multiple Choice"), + ("mcq", "Single Correct Choice"), ("mcc", "Multiple Correct Choices"), ("code", "Code"), ("upload", "Assignment Upload"), diff --git a/yaksh/templates/yaksh/question.html b/yaksh/templates/yaksh/question.html index 6218b18..27b2956 100644 --- a/yaksh/templates/yaksh/question.html +++ b/yaksh/templates/yaksh/question.html @@ -142,7 +142,7 @@ function call_skip(url) <div class="panel-heading"> <h4><u> {{ question.summary }} {% if question.type == "mcq" %} - (Single Correct Choice Questions) + (Single Correct Choice) {% elif question.type == "mcc" %} (Multiple Correct Choices) {% elif question.type == "code" %} |