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
4b872378
Commit
4b872378
authored
Nov 16, 2013
by
polesye
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
BLD-193: Add template for checkboxes to studio.
parent
ddd9e0e4
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 @
4b872378
...
...
@@ -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
the top. Include a label indicating the component affected.
Blades: Add template for checkboxes response to studio. BLD-193.
Blades: Video player:
- Add spinner;
- Improve initialization of modules;
...
...
@@ -20,7 +22,7 @@ text like with bold or italics. (BLD-449)
LMS: Beta instructor dashboard will only count actively enrolled students for
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
their forum posts.
...
...
cms/djangoapps/contentstore/features/component.feature
View file @
4b872378
...
...
@@ -39,6 +39,7 @@ Feature: CMS.Component Adding
When I add this type of Problem component
:
|
Component
|
|
Blank
Common
Problem
|
|
Checkboxes
|
|
Dropdown
|
|
Multiple
Choice
|
|
Numerical
Input
|
...
...
@@ -46,6 +47,7 @@ Feature: CMS.Component Adding
Then I see Problem components in this order
:
|
Component
|
|
Blank
Common
Problem
|
|
Checkboxes
|
|
Dropdown
|
|
Multiple
Choice
|
|
Numerical
Input
|
...
...
common/lib/xmodule/xmodule/templates/problem/checkboxes_response.yaml
0 → 100644
View file @
4b872378
---
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