"""Displays a question and gives an area where students can compose a response."""
start_datetime=String(default=datetime.datetime.now,scope=Scope.content,help="ISO-8601 formatted string representing the start date of this assignment.")
start_datetime=String(default=datetime.datetime.now().isoformat(),scope=Scope.content,help="ISO-8601 formatted string representing the start date of this assignment.")
due_datetime=String(default=None,scope=Scope.content,help="ISO-8601 formatted string representing the end date of this assignment.")
prompt=String(default=DEFAULT_PROMPT,scope=Scope.content,help="A prompt to display to a student (plain text).")
rubric=List(default=[],scope=Scope.content,help="Instructions and criteria for students giving feedback.")
...
...
@@ -293,6 +293,9 @@ class OpenAssessmentBlock(XBlock):