Commit 46da4cf2 by Vik Paruchuri

Add in a better notification icon

parent 67e364fa
...@@ -50,7 +50,7 @@ def staff_grading_notifications(course, user): ...@@ -50,7 +50,7 @@ def staff_grading_notifications(course, user):
log.info("Problem with getting notifications from staff grading service.") log.info("Problem with getting notifications from staff grading service.")
if pending_grading: 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} notification_dict = {'pending_grading': pending_grading, 'img_path': img_path, 'response': notifications}
...@@ -83,7 +83,7 @@ def peer_grading_notifications(course, user): ...@@ -83,7 +83,7 @@ def peer_grading_notifications(course, user):
log.info("Problem with getting notifications from peer grading service.") log.info("Problem with getting notifications from peer grading service.")
if pending_grading: 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} notification_dict = {'pending_grading': pending_grading, 'img_path': img_path, 'response': notifications}
...@@ -129,7 +129,7 @@ def combined_notifications(course, user): ...@@ -129,7 +129,7 @@ def combined_notifications(course, user):
log.exception("Problem with getting notifications from controller query service.") log.exception("Problem with getting notifications from controller query service.")
if pending_grading: 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} notification_dict = {'pending_grading': pending_grading, 'img_path': img_path, 'response': notifications}
......
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