From 01a1bf6b6f3a3adb07a249e767c3d8a6b56d03d0 Mon Sep 17 00:00:00 2001 From: David Ormsbee Date: Mon, 4 Mar 2013 15:19:24 -0500 Subject: [PATCH] It's not UTC time, it's whatever the local settings are set to (New York in prod) --- 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 3d78cbd4f0..683c61c5a0 100644 --- a/lms/templates/courseware/submission_history.html +++ b/lms/templates/courseware/submission_history.html @@ -4,7 +4,7 @@ % for i, entry in enumerate(history_entries):
-#${len(history_entries) - i}: ${entry.created} UTC
+#${len(history_entries) - i}: ${entry.created} (${TIME_ZONE} time)
Score: ${entry.grade} / ${entry.max_grade}
 ${json.dumps(json.loads(entry.state), indent=2, sort_keys=True) | h}