-
Notifications
You must be signed in to change notification settings - Fork 0
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
Grader feedback fix #72
base: dev
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix likely needs to be applied in a few additional places.
@@ -145,6 +145,7 @@ def save_additional_form_fields(params) | |||
if assessment.is_section_dependant | |||
form_hash["section"] = (assessment.lecture?) ? course_user_datum.lecture : course_user_datum.section | |||
end | |||
form_hash["ip"] = self.submitter_ip |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change is part of a separate change that has been merged - it should not be included here
@@ -6,7 +6,7 @@ | |||
<%= @score.feedback %> | |||
Score for this problem: <%= @score.score.to_f().round(1) %> | |||
|
|||
Graded by: <%= if @score.grader && @score.grader.user then @score.grader.user.email end %> | |||
Graded by: <%= if @score.grader && @score.grader.user then @score.grader.user.email elsif @assessment.has_autograder? then "Autograder" end %> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are other places this needs to be resolved as well - for example:
Autolab/app/views/scores/_score.html.erb
Line 10 in c7cb238
Graded by: <%= if @score.grader then @score.grader.email end %> |
Autolab/app/views/scores/show.html.erb
Line 10 in c7cb238
Graded by: <%= if @score.grader then @score.grader.email end %> |
No description provided.