Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign upFeature/rubric performance #4
Merged
Conversation
Return a list of students with the assignment scores and a rubric report for that assignment and outcome.
Add a new tab to the course UI, users select the target section and populate a list of assignments to select.
For a given assignment, fetch the student submission score and rubric results. Break into separate dictionaries for each student to display in a table in the UI. Notes: - A `columns` list defines which Outcomes to add to the table. This makes the hacky table header setting a little more legit. - Students are included by sortable name (also updated in the scores table for grade reconciliation) - Each student has a `rubric` object with assessed rubric scores for the selected assignment. - Table column IDs are matched with the student `rubric` item to make sure columns are populated correctly. TODO: - Color code Outcome scores by Outcome ID for the student (higher/lower than current average) - Return total possible points for the assignment
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
bennettscience commentedDec 2, 2019
Add rubric breakdown for individual assignments.