Commit de8e1e94 by Vik Paruchuri

Change around some names, restyle rubric

parent 03a6572b
...@@ -55,7 +55,7 @@ TRUE_DICT = ["True", True, "TRUE", "true"] ...@@ -55,7 +55,7 @@ TRUE_DICT = ["True", True, "TRUE", "true"]
HUMAN_TASK_TYPE = { HUMAN_TASK_TYPE = {
'selfassessment' : "Self Assessment", 'selfassessment' : "Self Assessment",
'openended' : "External Grader", 'openended' : "edX Assessment",
} }
class CombinedOpenEndedV1Module(): class CombinedOpenEndedV1Module():
......
...@@ -47,10 +47,10 @@ section.combined-open-ended-status { ...@@ -47,10 +47,10 @@ section.combined-open-ended-status {
.statusitem { .statusitem {
color: #2C2C2C; color: #2C2C2C;
font-size: .8em; font-size: 1em;
padding: 0px; padding: 0px;
display: block; display: block;
width: 55%; width: 70%;
.show-results { .show-results {
margin-top: .3em; margin-top: .3em;
text-align:right; text-align:right;
......
...@@ -68,10 +68,10 @@ class OpenEndedChild(object): ...@@ -68,10 +68,10 @@ class OpenEndedChild(object):
#This is used to tell students where they are at in the module #This is used to tell students where they are at in the module
HUMAN_NAMES = { HUMAN_NAMES = {
'initial': 'Started', 'initial': 'Not started',
'assessing': 'Being scored', 'assessing': 'In progress',
'post_assessment': 'Scoring finished', 'post_assessment': 'In progress',
'done': 'Problem complete', 'done': 'Done',
} }
def __init__(self, system, location, definition, descriptor, static_data, def __init__(self, system, location, definition, descriptor, static_data,
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
<h2>${display_name}</h2> <h2>${display_name}</h2>
<div class="status-container"> <div class="status-container">
${status | n} ${status | n}
</div> </div>
<div class="item-container"> <div class="item-container">
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
% endif % endif
%if status['type']=="openended" and status['state'] in ['done', 'post_assessment']: %if status['type']=="openended" and status['state'] in ['done', 'post_assessment']:
<a href="#results" class="show-results-button">Show results</a> <a href="#results" class="show-results-button"> Show results</a>
%endif %endif
</div> </div>
%endfor %endfor
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
% if view_only: % if view_only:
## if this is the selected rubric block, show it highlighted ## if this is the selected rubric block, show it highlighted
<div class="rubric-label"> <div class="rubric-label">
${option['text']} ${option['points']} points : ${option['text']}
</div> </div>
% else: % else:
<label class="rubric-label" for="score-${i}-${j}"> <label class="rubric-label" for="score-${i}-${j}">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment