Commit 58445320 by Calen Pennington

Use the correct attribute when accessing StudentModuleHistory creation dates

parent 34892b96
...@@ -1228,7 +1228,7 @@ def submission_history(request, course_id, student_username, location): ...@@ -1228,7 +1228,7 @@ def submission_history(request, course_id, student_username, location):
len(history_entries), len(history_entries),
) )
scores_by_date = { scores_by_date = {
score.modified: score score.created: score
for score in scores for score in scores
} }
scores = [ scores = [
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment