mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-08 14:18:40 +00:00
fix: d7f5d58eb7
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
d7f5d58eb7
commit
ebeed712bf
@ -281,7 +281,7 @@
|
||||
|
||||
<?php
|
||||
$ac_records = DB::selectAll([
|
||||
"select", DB::bracketed_fields([
|
||||
"select", DB::fields([
|
||||
"submit_time" => "date_format(submit_time, '%Y-%m-%d')",
|
||||
"problem_id",
|
||||
]),
|
||||
@ -293,14 +293,12 @@
|
||||
]
|
||||
]);
|
||||
$last_year_ac_cnt_by_day = [];
|
||||
$last_year_ac_cnt = 0;
|
||||
foreach ($ac_records as $record) {
|
||||
$last_year_ac_cnt++;
|
||||
$last_year_ac_cnt_by_day[$record["submit_time"]]++;
|
||||
}
|
||||
?>
|
||||
<div class="card mb-2">
|
||||
<div class="card-header fw-bold"><?= UOJLocale::get('n accepted in last year', $last_year_ac_cnt) ?></div>
|
||||
<div class="card-header fw-bold"><?= UOJLocale::get('n accepted in last year', count($ac_records)) ?></div>
|
||||
<div class="card-body">
|
||||
<div id="accepted-graph" style="font-size: 14px"></div>
|
||||
<script>
|
||||
|
Loading…
Reference in New Issue
Block a user