Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
7b1262f6
Commit
7b1262f6
authored
Jan 15, 2013
by
Vik Paruchuri
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix up authentication, other things
parent
4353c4ab
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
21 deletions
+23
-21
lms/djangoapps/courseware/tabs.py
+23
-21
No files found.
lms/djangoapps/courseware/tabs.py
View file @
7b1262f6
...
...
@@ -112,27 +112,29 @@ def _staff_grading(tab, user, course, active_page):
return
[]
def
_peer_grading
(
tab
,
user
,
course
,
active_page
):
link
=
reverse
(
'peer_grading'
,
args
=
[
course
.
id
])
peer_gs
=
PeerGradingService
(
settings
.
PEER_GRADING_INTERFACE
)
pending_grading
=
False
tab_name
=
"Peer grading"
img_path
=
""
try
:
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'
]:
pending_grading
=
True
except
:
#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"
tab
=
[
CourseTab
(
tab_name
,
link
,
active_page
==
"peer_grading"
,
True
,
img_path
)]
return
tab
if
user
.
is_authenticated
():
link
=
reverse
(
'peer_grading'
,
args
=
[
course
.
id
])
peer_gs
=
PeerGradingService
(
settings
.
PEER_GRADING_INTERFACE
)
pending_grading
=
False
tab_name
=
"Peer grading"
img_path
=
""
try
:
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'
]:
pending_grading
=
True
except
:
#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"
tab
=
[
CourseTab
(
tab_name
,
link
,
active_page
==
"peer_grading"
,
pending_grading
,
img_path
)]
return
tab
return
[]
#### Validators
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment