Skip to content

Commit

Permalink
feat: new icon for submission reject button
Browse files Browse the repository at this point in the history
  • Loading branch information
minh-ton committed Apr 21, 2024
1 parent c788d7f commit 6527aa3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/submission/row.html
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,10 @@
{% if perms.judge.reject_submission and can_edit %} ·
{% if not submission.is_locked %}
<a href="#" onclick="reject_submission({{ submission.id }}, event);return false">
<i class="fa fa-times fa-fw"></i><span class="label">{{ _('reject') }}</span>
<i class="fa fa-minus-circle fa-fw"></i><span class="label">{{ _('reject') }}</span>
</a>
{% else %}
<i class="fa fa-times fa-fw grey-icon"></i>
<i class="fa fa-minus-circle fa-fw grey-icon"></i>
<span class="label grey-label"
title="{{ _('This submission has been locked, and cannot be reject.') }}">
{{ _('locked') }}
Expand Down

0 comments on commit 6527aa3

Please sign in to comment.