Manual grading by student
Quiz reports ::: quiz_gradingstudents
Maintained by
Tim Hunt,
Mahmoud Kassaei
A quiz 'report' add-on for Moodle, like the nomal manual grading report, but which lets you grade one student at a time, rather than one question at a time.
Latest release:
298 sites
168 downloads
15 fans
This 'report' is actually a tool like the standard Manual grading quiz report,
but which lets you grade all the responses by one student, rather than all
the responses to one question.
Once the plugin is installed, you can access the functionality by going to
Reports -> Manual grading by student in the Quiz adminstration block.
To avoid confusion, you may wish to use Moodle's
http://docs.moodle.org/en/Language_customization
to rename the standard 'Manual grading' report to 'Manual grading by question'.
The string you are looking for is in the 'quiz_grading.php' component. You need
to edit the 'grades' string.
Useful links
Contributors
Tim Hunt (Lead maintainer)
Mahmoud Kassaei: Developer
Chris Nelson: Product owner
Please login to view contributors details and/or to contact them
See here: https://moodle.org/mod/forum/discuss.php?d=275531
This is a side-effect of this report being created by the OU, for the OU's own purposes. We wanted (mostly) anonymous marking. Therefore, this report is coded to show each student's ID number, not their name.
If you want to change this, you would need to change:
https://github.com/moodleou/moodle-quiz_gradingstudents/blob/v1.1/report.php#L378 - change 'u.idnumber' to 'u.*'.
https://github.com/moodleou/moodle-quiz_gradingstudents/blob/v1.1/report.php#L221 - change that whole line to '$row[] = fullname($attempt);'
(I think that is all you need to do. Please test before using that for real.)
TIA