Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Provide reference scores for grade summaries #336

Open
rxg opened this issue Apr 3, 2020 · 1 comment
Open

Provide reference scores for grade summaries #336

rxg opened this issue Apr 3, 2020 · 1 comment

Comments

@rxg
Copy link

rxg commented Apr 3, 2020

It looks like classy’s grade summary assumes that assignments are all marked out of 100 points? Since 411 doesn’t do that (we use different marking schemes for different exams, so different points, and don’t normalize), it would be great if there were a column for “out of N points” for each assignment.

@andrewstec
Copy link
Contributor

andrewstec commented Apr 3, 2020

@rxg

Are you referring to the grade summary student view on the front-end? You can decide how grades are weighted, but this requires customizing the front-end view. There is custom information that can be sent back to the front-end when doing an API request for a grades summary list. It is found in the custom property of the Grade object type sent to the Grades view:

{
  personId: 'x1x1',
  personURL: 'https://github-dev.students.cs.ubc.ca/atest-01',
  delivId: 'gradeAfterDeadlineTest',
  score: 80,
  comment: '',
  urlName: 'gradeAfterDeadlineTest_x1x1',
  URL: 'https://github-dev.students.cs.ubc.ca/cpsc210-2019w-t2/gradeAfterDeadlineTest_x1x1/commit/3acaabee48a0bd953e8bda446681884129bd1097',
  timestamp: 1579536026021,
  custom: {
    previousGrade: {
      personId: 'x1x1',
      delivId: 'gradeAfterDeadlineTest',
      score: 80,
      comment: '',
      urlName: 'gradeAfterDeadlineTest_x1x1',
      URL: 'https://github-dev.students.cs.ubc.ca/cpsc210-2019w-t2/gradeAfterDeadlineTest_x1x1/commit/3acaabee48a0bd953e8bda446681884129bd1097',
      timestamp: 1579536026021,
      custom: {}
    }
  }
}

Customizing Front-end info: https://github.com/ubccpsc/classy/blob/master/docs/instructor/gettingstarted.md#front-end-setup

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants