Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
e9b1d210
Commit
e9b1d210
authored
Nov 18, 2013
by
polesye
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1688 from edx/anton/add-template-checkboxes
Add template for checkboxes to studio.
parents
c085b31e
4b872378
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
1 deletions
+28
-1
CHANGELOG.rst
+3
-1
cms/djangoapps/contentstore/features/component.feature
+2
-0
common/lib/xmodule/xmodule/templates/problem/checkboxes_response.yaml
+23
-0
No files found.
CHANGELOG.rst
View file @
e9b1d210
...
@@ -5,6 +5,8 @@ These are notable changes in edx-platform. This is a rolling list of changes,
...
@@ -5,6 +5,8 @@ These are notable changes in edx-platform. This is a rolling list of changes,
in roughly chronological order, most recent first. Add your entries at or near
in roughly chronological order, most recent first. Add your entries at or near
the top. Include a label indicating the component affected.
the top. Include a label indicating the component affected.
Blades: Add template for checkboxes response to studio. BLD-193.
Blades: Video player:
Blades: Video player:
- Add spinner;
- Add spinner;
- Improve initialization of modules;
- Improve initialization of modules;
...
@@ -20,7 +22,7 @@ text like with bold or italics. (BLD-449)
...
@@ -20,7 +22,7 @@ text like with bold or italics. (BLD-449)
LMS: Beta instructor dashboard will only count actively enrolled students for
LMS: Beta instructor dashboard will only count actively enrolled students for
course enrollment numbers.
course enrollment numbers.
Blades:
Blades:
Fix speed menu that is not rendered correctly when YouTube is unavailable. (BLD-457).
Blades: Fix speed menu that is not rendered correctly when YouTube is unavailable. (BLD-457).
LMS: Users with is_staff=True no longer have the STAFF label appear on
LMS: Users with is_staff=True no longer have the STAFF label appear on
their forum posts.
their forum posts.
...
...
cms/djangoapps/contentstore/features/component.feature
View file @
e9b1d210
...
@@ -39,6 +39,7 @@ Feature: CMS.Component Adding
...
@@ -39,6 +39,7 @@ Feature: CMS.Component Adding
When I add this type of Problem component
:
When I add this type of Problem component
:
|
Component
|
|
Component
|
|
Blank
Common
Problem
|
|
Blank
Common
Problem
|
|
Checkboxes
|
|
Dropdown
|
|
Dropdown
|
|
Multiple
Choice
|
|
Multiple
Choice
|
|
Numerical
Input
|
|
Numerical
Input
|
...
@@ -46,6 +47,7 @@ Feature: CMS.Component Adding
...
@@ -46,6 +47,7 @@ Feature: CMS.Component Adding
Then I see Problem components in this order
:
Then I see Problem components in this order
:
|
Component
|
|
Component
|
|
Blank
Common
Problem
|
|
Blank
Common
Problem
|
|
Checkboxes
|
|
Dropdown
|
|
Dropdown
|
|
Multiple
Choice
|
|
Multiple
Choice
|
|
Numerical
Input
|
|
Numerical
Input
|
...
...
common/lib/xmodule/xmodule/templates/problem/checkboxes_response.yaml
0 → 100644
View file @
e9b1d210
---
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>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment