Commit 93dc9050 by Kevin Falcone

Merge pull request #11913 from edx/jibsheet/submission-history-time-zone

This appears to actually be in UTC (not in the django TZ default).
parents 3acc6da9 06f5e499
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
% for i, (entry, score) in enumerate(zip(history_entries, scores)): % for i, (entry, score) in enumerate(zip(history_entries, scores)):
<hr/> <hr/>
<div> <div>
<b>#${len(history_entries) - i}</b>: ${entry.updated} (${TIME_ZONE} time)</br> <b>#${len(history_entries) - i}</b>: ${entry.updated} UTC</br>
Score: ${score.grade} / ${score.max_grade} Score: ${score.grade} / ${score.max_grade}
<pre> <pre>
${json.dumps(entry.state, indent=2, sort_keys=True) | h} ${json.dumps(entry.state, indent=2, sort_keys=True) | h}
......
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