diff --git a/common/lib/xmodule/xmodule/combined_open_ended_rubric.py b/common/lib/xmodule/xmodule/combined_open_ended_rubric.py index 0cfa6cde88..a9771cd878 100644 --- a/common/lib/xmodule/xmodule/combined_open_ended_rubric.py +++ b/common/lib/xmodule/xmodule/combined_open_ended_rubric.py @@ -171,12 +171,18 @@ class CombinedOpenEndedRubric(object): rubric_categories[i]['options'][j]['grader_types'].append(grader_type) log.debug(rubric_categories) + grader_type_image_dict = { + 'SA' : '/static/images/self_assessment_icon.png', + 'PE' : '/static/images/peer_grading_icon.png', + 'ML' : '/static/images/ml_grading_icon.png', + } html = self.system.render_template('open_ended_rubric.html', {'categories': rubric_categories, 'has_score': True, 'view_only': True, 'max_score': max_score, - 'combined_rubric' : True + 'combined_rubric' : True, + 'grader_type_image_dict' : grader_type_image_dict, }) return html diff --git a/common/static/images/ml_grading_icon.png b/common/static/images/ml_grading_icon.png new file mode 100644 index 0000000000..283355814e Binary files /dev/null and b/common/static/images/ml_grading_icon.png differ diff --git a/common/static/images/peer_grading_icon.png b/common/static/images/peer_grading_icon.png new file mode 100644 index 0000000000..0ee7cf5f17 Binary files /dev/null and b/common/static/images/peer_grading_icon.png differ diff --git a/common/static/images/self_assessment_icon.png b/common/static/images/self_assessment_icon.png new file mode 100644 index 0000000000..c4b84e2ec8 Binary files /dev/null and b/common/static/images/self_assessment_icon.png differ diff --git a/lms/templates/open_ended_rubric.html b/lms/templates/open_ended_rubric.html index 9274d395bb..47300508d0 100644 --- a/lms/templates/open_ended_rubric.html +++ b/lms/templates/open_ended_rubric.html @@ -28,7 +28,8 @@ % elif combined_rubric == True: