mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-09 23:08:42 +00:00
feat: contest progress text in standings page
This commit is contained in:
parent
5f24f88392
commit
922b5bbeb1
@ -486,8 +486,21 @@ EOD;
|
||||
?>
|
||||
<?php echoUOJPageHeader(HTML::stripTags($contest['name']) . ' - ' . $tabs_info[$cur_tab]['name'] . ' - ' . UOJLocale::get('contests::contest')) ?>
|
||||
|
||||
<div class="text-center d-md-none">
|
||||
<div class="text-center d-md-none mb-3">
|
||||
<h1 class="h2"><?= $contest['name'] ?></h1>
|
||||
<div class="small text-muted">
|
||||
<?php if ($contest['cur_progress'] <= CONTEST_NOT_STARTED): ?>
|
||||
<?= UOJLocale::get('contests::not started') ?>
|
||||
<?php elseif ($contest['cur_progress'] <= CONTEST_IN_PROGRESS): ?>
|
||||
<?= UOJLocale::get('contests::in progress') ?>
|
||||
<?php elseif ($contest['cur_progress'] <= CONTEST_PENDING_FINAL_TEST): ?>
|
||||
<?= UOJLocale::get('contests::pending final test') ?>
|
||||
<?php elseif ($contest['cur_progress'] <= CONTEST_TESTING): ?>
|
||||
<?= UOJLocale::get('contests::final testing') ?>
|
||||
<?php else: ?>
|
||||
<?= UOJLocale::get('contests::finished') ?>
|
||||
<?php endif ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@ -499,7 +512,22 @@ EOD;
|
||||
<?php endif ?>
|
||||
<?= HTML::tablist($tabs_info, $cur_tab, 'nav-pills') ?>
|
||||
<?php if ($cur_tab == 'standings' || $cur_tab == 'after_contest_standings' || $cur_tab == 'self_reviews'): ?>
|
||||
<h1 class="h2 text-center d-none d-md-block mt-2"><?= $contest['name'] ?></h1>
|
||||
<div class="d-none d-md-block text-center">
|
||||
<h1 class="h2 mt-2 mb-3"><?= $contest['name'] ?></h1>
|
||||
<div class="small text-muted">
|
||||
<?php if ($contest['cur_progress'] <= CONTEST_NOT_STARTED): ?>
|
||||
<?= UOJLocale::get('contests::not started') ?>
|
||||
<?php elseif ($contest['cur_progress'] <= CONTEST_IN_PROGRESS): ?>
|
||||
<?= UOJLocale::get('contests::in progress') ?>
|
||||
<?php elseif ($contest['cur_progress'] <= CONTEST_PENDING_FINAL_TEST): ?>
|
||||
<?= UOJLocale::get('contests::pending final test') ?>
|
||||
<?php elseif ($contest['cur_progress'] <= CONTEST_TESTING): ?>
|
||||
<?= UOJLocale::get('contests::final testing') ?>
|
||||
<?php else: ?>
|
||||
<?= UOJLocale::get('contests::finished') ?>
|
||||
<?php endif ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php endif ?>
|
||||
<div class="mt-3">
|
||||
<?php
|
||||
|
@ -10,6 +10,7 @@ return [
|
||||
'the number of registrants' => 'Registrants',
|
||||
'register' => 'register',
|
||||
'registered' => 'registered',
|
||||
'not started' => 'not started',
|
||||
'in progress' => 'in progress',
|
||||
'pending final test' => 'pending final test',
|
||||
'final testing' => 'final testing',
|
||||
|
@ -10,6 +10,7 @@ return [
|
||||
'the number of registrants' => '报名人数',
|
||||
'register' => '报名',
|
||||
'registered' => '已报名',
|
||||
'not started' => '未开始',
|
||||
'in progress' => '正在进行',
|
||||
'pending final test' => '等待评测',
|
||||
'final testing' => '正在评测',
|
||||
|
Loading…
Reference in New Issue
Block a user