Commit 578f7ae8 by Giulio Gratta

renamed tab, redisplayed legend and changed assessment type name to Reviewed Assessment

parent cf95f7fa
...@@ -52,7 +52,6 @@ section.legend-container { ...@@ -52,7 +52,6 @@ section.legend-container {
width: 20%; width: 20%;
} }
margin-bottom: 5px; margin-bottom: 5px;
display: none !important;
} }
section.combined-open-ended-status { section.combined-open-ended-status {
......
...@@ -295,9 +295,6 @@ class @PeerGradingProblem ...@@ -295,9 +295,6 @@ class @PeerGradingProblem
# #
########## ##########
remove_answer_unknown: () =>
@answer_unknown_checkbox.removeAttr("checked")
remove_flag: () => remove_flag: () =>
@flag_student_checkbox.removeAttr("checked") @flag_student_checkbox.removeAttr("checked")
@close_dialog_box() @close_dialog_box()
...@@ -352,9 +349,9 @@ class @PeerGradingProblem ...@@ -352,9 +349,9 @@ class @PeerGradingProblem
@grading_wrapper.attr('data-graded', graded) #just in case someone wants to read the DOM @grading_wrapper.attr('data-graded', graded) #just in case someone wants to read the DOM
message = "<p>Successfully saved your feedback. Fetched the next essay.</p>" message = "<p>Successfully saved your feedback. Fetched the next essay.</p>"
if graded >= required if graded >= required
message = "<p>Successfully saved your feedback. Fetched the next essay. message = "<p>Successfully saved your feedback. Fetched the next essay.</p>
<b>You have completed the required number of peer evaluations, but may <p><strong>You have completed the required number of peer evaluations, but may
choose to continue grading if you'd like.</b></p>" choose to continue grading if you'd like.</strong></p>"
@grading_message.fadeIn() @grading_message.fadeIn()
@grading_message.html(message) @grading_message.html(message)
$.scrollTo(@grading_message) $.scrollTo(@grading_message)
......
...@@ -32,7 +32,7 @@ TRUE_DICT = ["True", True, "TRUE", "true"] ...@@ -32,7 +32,7 @@ TRUE_DICT = ["True", True, "TRUE", "true"]
HUMAN_TASK_TYPE = { HUMAN_TASK_TYPE = {
'selfassessment': "Self Assessment", 'selfassessment': "Self Assessment",
'openended': "edX Assessment", 'openended': "Reviewed Assessment",
} }
# Default value that controls whether or not to skip basic spelling checks in the controller # Default value that controls whether or not to skip basic spelling checks in the controller
......
...@@ -47,7 +47,7 @@ ...@@ -47,7 +47,7 @@
<textarea name="feedback" placeholder="Feedback for student" <textarea name="feedback" placeholder="Feedback for student"
class="feedback-area" cols="70" ></textarea> class="feedback-area" cols="70" ></textarea>
<div class="flag-student-container"> This submission has explicit or pornographic content : <input type="checkbox" class="flag-checkbox" value="student_is_flagged"> </div> <div class="flag-student-container"> This submission has explicit or pornographic content : <input type="checkbox" class="flag-checkbox" value="student_is_flagged"> </div>
<div class="answer-unknown-container"> I do not know how to grade this question : <input type="checkbox" class="answer-unknown-checkbox" value="answer_is_unknown"></div> <div class="answer-unknown-container"> I'm not confident about my choices above : <input type="checkbox" class="answer-unknown-checkbox" value="answer_is_unknown"></div>
</div> </div>
......
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