Commit 13a72f74 by Xavier Antoviaque

Update default of `quizz.type` to match new types (choices/rating)

parent a3b408f2
...@@ -62,7 +62,7 @@ class QuizzBlock(XBlock): ...@@ -62,7 +62,7 @@ class QuizzBlock(XBlock):
set, with preset choices and author-defined values. set, with preset choices and author-defined values.
""" """
question = String(help="Question to ask the student", scope=Scope.content, default="") question = String(help="Question to ask the student", scope=Scope.content, default="")
type = String(help="Type of quizz", scope=Scope.content, default="yes-no-unsure") type = String(help="Type of quizz", scope=Scope.content, default="choices")
student_choice = String(help="Last input submitted by the student", default="", scope=Scope.user_state) student_choice = String(help="Last input submitted by the student", default="", scope=Scope.user_state)
low = String(help="Label for low ratings", scope=Scope.content, default="Less") low = String(help="Label for low ratings", scope=Scope.content, default="Less")
high = String(help="Label for high ratings", scope=Scope.content, default="More") high = String(help="Label for high ratings", scope=Scope.content, default="More")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment