submission_history.html 348 Bytes
Newer Older
1 2 3 4 5 6
<% import json  %>
<h3>${username} > ${course_id} > ${location}</h3>

% for i, entry in enumerate(history_entries):
<hr/>
<div>
7
<b>#${len(history_entries) - i}</b>: ${entry.created} (${TIME_ZONE} time)</br>
8 9 10 11 12 13
Score: ${entry.grade} / ${entry.max_grade}
<pre>
${json.dumps(json.loads(entry.state), indent=2, sort_keys=True) | h}
</pre>
</div>
% endfor