Commit 7b1262f6 by Vik Paruchuri

Fix up authentication, other things

parent 4353c4ab
...@@ -112,27 +112,29 @@ def _staff_grading(tab, user, course, active_page): ...@@ -112,27 +112,29 @@ def _staff_grading(tab, user, course, active_page):
return [] return []
def _peer_grading(tab, user, course, active_page): def _peer_grading(tab, user, course, active_page):
link = reverse('peer_grading', args=[course.id]) if user.is_authenticated():
peer_gs = PeerGradingService(settings.PEER_GRADING_INTERFACE) link = reverse('peer_grading', args=[course.id])
pending_grading=False peer_gs = PeerGradingService(settings.PEER_GRADING_INTERFACE)
tab_name = "Peer grading" pending_grading=False
img_path= "" tab_name = "Peer grading"
try: img_path= ""
notifications = json.loads(peer_gs.get_notifications(course.id,unique_id_for_user(user))) try:
log.debug(notifications) notifications = json.loads(peer_gs.get_notifications(course.id,unique_id_for_user(user)))
log.debug(notifications)
if notifications['success']:
if notifications['student_needs_to_peer_grade']: if notifications['success']:
pending_grading=True if notifications['student_needs_to_peer_grade']:
except: pending_grading=True
#Non catastrophic error, so no real action except:
log.info("Problem with getting notifications from peer grading service.") #Non catastrophic error, so no real action
log.info("Problem with getting notifications from peer grading service.")
if pending_grading:
img_path = "/static/images/slider-handle.png" if pending_grading:
img_path = "/static/images/slider-handle.png"
tab = [CourseTab(tab_name, link, active_page == "peer_grading", True, img_path)]
return tab tab = [CourseTab(tab_name, link, active_page == "peer_grading", pending_grading, img_path)]
return tab
return []
#### Validators #### Validators
......
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