Commit 4b5aba29 by Vik Paruchuri

Fix defaults

parent 1be6ce3e
...@@ -248,28 +248,28 @@ class CombinedOpenEndedFields(object): ...@@ -248,28 +248,28 @@ class CombinedOpenEndedFields(object):
min_to_calibrate = Integer( min_to_calibrate = Integer(
display_name="Minimum Peer Grading Calibrations", display_name="Minimum Peer Grading Calibrations",
help="The minimum number of calibration essays each student will need to complete for peer grading.", help="The minimum number of calibration essays each student will need to complete for peer grading.",
default=1, default=3,
scope=Scope.settings, scope=Scope.settings,
values={"min" : 1, "step" : "1"} values={"min" : 1, "step" : "1"}
) )
max_to_calibrate = Integer( max_to_calibrate = Integer(
display_name="Maximum Peer Grading Calibrations", display_name="Maximum Peer Grading Calibrations",
help="The maximum number of calibration essays each student will need to complete for peer grading.", help="The maximum number of calibration essays each student will need to complete for peer grading.",
default=1, default=6,
scope=Scope.settings, scope=Scope.settings,
values={"max" : 20, "step" : "1"} values={"max" : 20, "step" : "1"}
) )
peer_grader_count = Integer( peer_grader_count = Integer(
display_name="Peer Graders per Response", display_name="Peer Graders per Response",
help="The number of peers who will grade each submission.", help="The number of peers who will grade each submission.",
default=1, default=3,
scope=Scope.settings, scope=Scope.settings,
values={"min" : 1, "step" : "1", "max" : 5} values={"min" : 1, "step" : "1", "max" : 5}
) )
required_peer_grading = Integer( required_peer_grading = Integer(
display_name="Required Peer Grading", display_name="Required Peer Grading",
help="The number of other students each student making a submission will have to grade.", help="The number of other students each student making a submission will have to grade.",
default=1, default=3,
scope=Scope.settings, scope=Scope.settings,
values={"min" : 1, "step" : "1", "max" : 5} values={"min" : 1, "step" : "1", "max" : 5}
) )
......
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