Hide submission time for frozen sub

This commit is contained in:
cuom1999 2022-12-28 23:05:44 -06:00
parent 5f7199669c
commit 45ada7995a
2 changed files with 4 additions and 4 deletions

View file

@ -13,9 +13,11 @@
<td class="lightbox-submissions-time case-{{'AC' if cur_subtask.points == cur_subtask.total else ('TLE' if cur_subtask.points == '???' else 'WA')}}">
{{ cur_subtask.points }} / {{ cur_subtask.total }}
</td>
{% if cur_subtask.contest_time%}
<td>
({{ cur_subtask.contest_time }})
</td>
</td>
{% endif %}
{% if cur_subtask.submission %}
{% set can_view = submission_layout(cur_subtask.submission, profile_id, request.user, editable_problem_ids, completed_problem_ids) %}
{% if can_view %}