1
1
mirror of https://github.com/renbaoshuo/S2OJ.git synced 2025-03-30 18:37:03 +00:00

fix: assignment problem status icon

This commit is contained in:
Baoshuo Ren 2022-09-22 08:51:38 +08:00
parent c3584fa9dc
commit d3e99b0217
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A

@ -74,9 +74,9 @@
echo '<td>' . getUserLink($username) . '</td>';
foreach ($problem_ids as $problem_id) {
if (!isset($finished[$username]) || !isset($finished[$username][$problem_id])) {
echo '<td class="failed"><i class="fa fa-times"></i></td>';
echo '<td class="failed"><span class="glyphicon glyphicon-ok"></span></td>';
} else {
echo '<td class="success"><i class="fa fa-check"></i></td>';
echo '<td class="success"><span class="glyphicon glyphicon-remove"></span></td>';
}
}
echo '</tr>';