Merge pull request #1688 from edx/anton/add-template-checkboxes

Add template for checkboxes to studio.
This commit is contained in:
polesye
2013-11-18 11:24:25 -08:00
3 changed files with 28 additions and 1 deletions

View File

@@ -0,0 +1,23 @@
---
metadata:
display_name: Checkboxes
markdown: |
A checkboxes problem presents checkbox buttons for student input. Students can select more
than one option presented.
[x] correct
[ ] incorrect
[x] correct
data: |
<problem>
<p>A checkboxes problem presents checkbox buttons for student input. Students can select more than one option presented.</p>
<choiceresponse>
<checkboxgroup direction="vertical">
<choice correct="true">correct</choice>
<choice correct="false">incorrect</choice>
<choice correct="true">correct</choice>
</checkboxgroup>
</choiceresponse>
</problem>