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.
This commit is contained in:
Kevin Falcone
2016-03-23 14:38:18 -04:00
parent 679cdc3775
commit 06f5e49978

View File

@@ -4,7 +4,7 @@
% for i, (entry, score) in enumerate(zip(history_entries, scores)):
<hr/>
<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}
<pre>
${json.dumps(entry.state, indent=2, sort_keys=True) | h}