Skip to content

Commit

Permalink
Fix templates/admin/judge/contest/change_form.html
Browse files Browse the repository at this point in the history
  • Loading branch information
hieplpvip committed Sep 29, 2024
1 parent 6f63942 commit cce828f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions templates/admin/judge/contest/change_form.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
django.jQuery(function ($) {
$('.rerate-link').appendTo('div#bottombar').show();
$('.rejudge-link').click(function () {
return confirm({{ _('Are you sure you want to rejudge ALL the submissions?')|htmltojs }});
return confirm('{{ _('Are you sure you want to rejudge ALL the submissions?') }}');
});
$('.rescore-link').click(function () {
return confirm({{ _('Are you sure you want to rescore ALL the submissions?')|htmltojs }});
return confirm('{{ _('Are you sure you want to rescore ALL the submissions?') }}');
});
$('.resend-link').click(function () {
return confirm({{ _('Are you sure you want to resend this announcement?')|htmltojs }});
return confirm('{{ _('Are you sure you want to resend this announcement?') }}');
});
});
</script>
Expand Down

0 comments on commit cce828f

Please sign in to comment.