- I opened the data base and updated 10 records so the teacher would be notified upon submissions. Using MySQL workbench, I have a snippet that makes this easy. I could have done them one at a time via the moodle course interface, Assignment | Edit properties, but this was quicker.
UPDATE `student`.`mdl_assign`
SET sendnotifications = 1
WHERE course = xxxx
;
Using a Gradebook lense,
- Moved the newly added item into the Percentage of Course completed category. Using the Full gradebook view
- Moved the assignments in the Full gradebook view - so their order in the User report matches the order of the items on the course page. I have a script for this, but in this case, I have to manually move them. I do appreciate the ability to place the item once if has been selected.
After moving the assignments in the Full view, the items order matches between the User report and the course home page
Moodle User Report - notice 7 items for unit 1
Moodle course home page - note the 7 gradable items on the course page in Unit 1 match the User report.
Note: The gradebook view is only concerned with gradable items, not content. That is why you see content on the course home page but not in the gradebook user report.



No comments:
Post a Comment