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
2b4e9f45
Commit
2b4e9f45
authored
Jan 17, 2013
by
Diana Huang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updates to the CSS and html formatting for statuses
and self-assessment
parent
280a2f29
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
33 additions
and
11 deletions
+33
-11
common/lib/xmodule/xmodule/css/combinedopenended/display.scss
+18
-3
lms/templates/combined_open_ended.html
+1
-3
lms/templates/combined_open_ended_results.html
+2
-3
lms/templates/combined_open_ended_status.html
+7
-1
lms/templates/self_assessment_rubric.html
+5
-1
No files found.
common/lib/xmodule/xmodule/css/combinedopenended/display.scss
View file @
2b4e9f45
...
...
@@ -54,10 +54,17 @@ section.combined-open-ended-status {
font-family
:
monospace
;
font-size
:
1em
;
padding
:
10px
;
.show-results
{
margin-top
:
.3em
;
text-align
:right
;
}
.show-results-button
{
font
:
1em
monospace
;
}
}
.statusitem-current
{
background-color
:
#c
c
c
;
background-color
:
#c
d
c
;
color
:
#2C2C2C
;
}
...
...
@@ -624,7 +631,15 @@ section.open-ended-child {
font-size
:
0
.9em
;
}
.assessment
{
margin
:
40px
0px
20px
0px
;
.assessment-container
{
margin
:
40px
0px
30px
0px
;
.scoring-container
{
p
{
margin-bottom
:
1em
;
}
}
}
}
lms/templates/combined_open_ended.html
View file @
2b4e9f45
...
...
@@ -2,10 +2,7 @@
<h2>
${display_name}
</h2>
<div
class=
"status-container"
>
<h4>
Status
</h4>
<div
class=
"status-elements"
>
${status | n}
</div>
</div>
<div
class=
"item-container"
>
...
...
@@ -21,6 +18,7 @@
<input
type=
"button"
value=
"Next Step"
class=
"next-step-button"
name=
"reset"
/>
</div>
<a
name=
"results"
/>
<div
class=
"result-container"
>
</div>
</section>
...
...
lms/templates/combined_open_ended_results.html
View file @
2b4e9f45
<div
class=
"result-container"
>
<h4>
Results from Step ${task_number}
</h4>
<br/>
<h4>
Results from Step ${task_number}
</h4>
${results | n}
</div>
\ No newline at end of file
</div>
lms/templates/combined_open_ended_status.html
View file @
2b4e9f45
%if len(status_list) > 1:
<h4>
Status
</h4>
<div
class=
"status-elements"
>
<section
id=
"combined-open-ended-status"
class=
"combined-open-ended-status"
>
%for i in xrange(0,len(status_list)):
<
%
status=
status_list[i]%
>
...
...
@@ -20,9 +23,12 @@
%if status['type']=="openended" and status['state'] in ['done', 'post_assessment']:
<div
class=
"show-results"
>
<a
href=
"#"
class=
"show-results-button"
>
Show results from step ${status['task_number']}
</a>
<a
href=
"#results"
class=
"show-results-button"
>
Show results from Step ${status['task_number']}
</a>
</div>
%endif
</div>
%endfor
</section>
</div>
%endif
lms/templates/self_assessment_rubric.html
View file @
2b4e9f45
<div
class=
"assessment"
>
<div
class=
"assessment
-container
"
>
<div
class=
"rubric"
>
${rubric | n }
</div>
% if not read_only:
<div
class=
"scoring-container"
>
<h3>
Scoring
</h3>
<p>
Please select a score below:
</p>
<select
name=
"assessment"
class=
"assessment"
>
%for i in xrange(0,max_score+1):
<option
value=
"${i}"
>
${i}
</option>
%endfor
</select>
</div>
% endif
</div>
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