diff options
author | prathamesh | 2014-06-27 17:20:02 +0530 |
---|---|---|
committer | prathamesh | 2014-06-27 17:20:02 +0530 |
commit | faacb5ba720abc9660e1afa12c9a3c4d0761254f (patch) | |
tree | e4ebc764981e3e223242b9e60611f03c3de51a3f /testapp/exam/models.py | |
parent | b61c62291424089478064af1fceb81c1ed4e5c54 (diff) | |
download | online_test-faacb5ba720abc9660e1afa12c9a3c4d0761254f.tar.gz online_test-faacb5ba720abc9660e1afa12c9a3c4d0761254f.tar.bz2 online_test-faacb5ba720abc9660e1afa12c9a3c4d0761254f.zip |
Mutiple correct choices question type added.
Diffstat (limited to 'testapp/exam/models.py')
-rw-r--r-- | testapp/exam/models.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/testapp/exam/models.py b/testapp/exam/models.py index 62c707b..0d31b16 100644 --- a/testapp/exam/models.py +++ b/testapp/exam/models.py @@ -28,6 +28,7 @@ languages = ( question_types = ( ("mcq", "Multiple Choice"), + ("mcc", "Multiple Correct Choices"), ("code", "Code"), ) |