diff --git a/common/static/images/grading_notification.png b/common/static/images/grading_notification.png new file mode 100644 index 0000000000..cd93857da9 Binary files /dev/null and b/common/static/images/grading_notification.png differ diff --git a/lms/djangoapps/open_ended_grading/open_ended_notifications.py b/lms/djangoapps/open_ended_grading/open_ended_notifications.py index f79013e396..4055aab347 100644 --- a/lms/djangoapps/open_ended_grading/open_ended_notifications.py +++ b/lms/djangoapps/open_ended_grading/open_ended_notifications.py @@ -50,7 +50,7 @@ def staff_grading_notifications(course, user): log.info("Problem with getting notifications from staff grading service.") if pending_grading: - img_path = "/static/images/slider-handle.png" + img_path = "/static/images/grading_notification.png" notification_dict = {'pending_grading': pending_grading, 'img_path': img_path, 'response': notifications} @@ -83,7 +83,7 @@ def peer_grading_notifications(course, user): log.info("Problem with getting notifications from peer grading service.") if pending_grading: - img_path = "/static/images/slider-handle.png" + img_path = "/static/images/grading_notification.png" notification_dict = {'pending_grading': pending_grading, 'img_path': img_path, 'response': notifications} @@ -129,7 +129,7 @@ def combined_notifications(course, user): log.exception("Problem with getting notifications from controller query service.") if pending_grading: - img_path = "/static/images/slider-handle.png" + img_path = "/static/images/grading_notification.png" notification_dict = {'pending_grading': pending_grading, 'img_path': img_path, 'response': notifications}