From 06f5e4997858269b98906f7885cccc9fd2a8872a Mon Sep 17 00:00:00 2001 From: Kevin Falcone Date: Wed, 23 Mar 2016 14:38:18 -0400 Subject: [PATCH] This appears to actually be in UTC (not in the django TZ default). You can see the times are marked +00:00 for the ISO 8601 format date and I see no code in the backend that tries to convert. --- lms/templates/courseware/submission_history.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/templates/courseware/submission_history.html b/lms/templates/courseware/submission_history.html index b89fb420f9..4639b7c84b 100644 --- a/lms/templates/courseware/submission_history.html +++ b/lms/templates/courseware/submission_history.html @@ -4,7 +4,7 @@ % for i, (entry, score) in enumerate(zip(history_entries, scores)):
-#${len(history_entries) - i}: ${entry.updated} (${TIME_ZONE} time)
+#${len(history_entries) - i}: ${entry.updated} UTC
Score: ${score.grade} / ${score.max_grade}
 ${json.dumps(entry.state, indent=2, sort_keys=True) | h}