You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Hydro/packages/ui-default/templates/problem_submit_tr.html

12 lines
362 B
HTML

{% import "components/record.html" as record with context %}
<tr data-rid="{{ rdoc['_id'] }}">
{{ record.render_status_td(rdoc) }}
<td class="col--memory">
{{ (rdoc.memory / 1000)|round(0, 'ceil')|int }} MB
</td>
<td class="col--time">
{{ rdoc.time|round|int }}ms
</td>
<td class="col--submit-at">{{ datetimeSpan(rdoc._id)|safe }}</td>
</tr>