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
205f0723
Commit
205f0723
authored
Apr 20, 2017
by
sanfordstudent
Committed by
GitHub
Apr 20, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #14922 from edx/sstudent/grade_reports
additional logging for grade reports investigation
parents
1791d141
edee55d3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
11 deletions
+14
-11
lms/djangoapps/instructor_task/tasks_helper.py
+14
-11
No files found.
lms/djangoapps/instructor_task/tasks_helper.py
View file @
205f0723
...
...
@@ -828,17 +828,20 @@ def upload_grades_csv(_xmodule_instance_args, _entry_id, course_id, _task_input,
course_grade
.
letter_grade
,
student
.
id
in
whitelisted_user_ids
)
if
certificate_info
[
0
]
==
'Y'
:
TASK_LOG
.
info
(
u'Student is marked eligible_for_certificate'
u'(user=
%
s, course_id=
%
s, grade_percent=
%
s gradecutoffs=
%
s, allow_certificate=
%
s, is_whitelisted=
%
s)'
,
student
,
course_id
,
course_grade
.
percent
,
course
.
grade_cutoffs
,
student
.
profile
.
allow_certificate
,
student
.
id
in
whitelisted_user_ids
)
TASK_LOG
.
info
(
u'Student certificate eligibility:
%
s '
u'(user=
%
s, course_id=
%
s, grade_percent=
%
s letter_grade=
%
s gradecutoffs=
%
s, allow_certificate=
%
s, '
u'is_whitelisted=
%
s)'
,
certificate_info
[
0
],
student
,
course_id
,
course_grade
.
percent
,
course_grade
.
letter_grade
,
course
.
grade_cutoffs
,
student
.
profile
.
allow_certificate
,
student
.
id
in
whitelisted_user_ids
)
grade_results
=
[]
for
assignment_type
,
assignment_info
in
graded_assignments
.
iteritems
():
...
...
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