diff --git a/lms/templates/courseware/submission_history.html b/lms/templates/courseware/submission_history.html index 4d7a255735dc..b89fb420f9e2 100644 --- a/lms/templates/courseware/submission_history.html +++ b/lms/templates/courseware/submission_history.html @@ -1,10 +1,10 @@ -<% import json, pytz %> +<% import json %>

${username | h} > ${course_id | h} > ${location | h}

% for i, (entry, score) in enumerate(zip(history_entries, scores)):
-#${len(history_entries) - i}: ${entry.updated.astimezone(pytz.timezone(TIME_ZONE))} (${TIME_ZONE} time)
+#${len(history_entries) - i}: ${entry.updated} (${TIME_ZONE} time)
Score: ${score.grade} / ${score.max_grade}
 ${json.dumps(entry.state, indent=2, sort_keys=True) | h}