BLD-193: Add template for checkboxes to studio.

This commit is contained in:
polesye
2013-11-16 16:35:57 +02:00
parent ddd9e0e451
commit 4b87237825
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>