aboutsummaryrefslogtreecommitdiffhomepage
path: root/backend/admin/templates
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-03-20 20:44:49 +0900
committernsfisis <nsfisis@gmail.com>2025-03-20 20:44:49 +0900
commit23315cc2e0c98510ffca5adf06a2152945e51756 (patch)
treeb5a743ff2adbcd5ccafeb06107b186218d201e18 /backend/admin/templates
parent4a2438201d0e365a873632a1ffcf913661eacbec (diff)
downloadphperkaigi-2025-albatross-23315cc2e0c98510ffca5adf06a2152945e51756.tar.gz
phperkaigi-2025-albatross-23315cc2e0c98510ffca5adf06a2152945e51756.tar.zst
phperkaigi-2025-albatross-23315cc2e0c98510ffca5adf06a2152945e51756.zip
fix(backend): fix online qualifying ranking
Diffstat (limited to 'backend/admin/templates')
-rw-r--r--backend/admin/templates/online_qualifying_ranking.html9
1 files changed, 6 insertions, 3 deletions
diff --git a/backend/admin/templates/online_qualifying_ranking.html b/backend/admin/templates/online_qualifying_ranking.html
index 3b00046..039687e 100644
--- a/backend/admin/templates/online_qualifying_ranking.html
+++ b/backend/admin/templates/online_qualifying_ranking.html
@@ -10,15 +10,18 @@
<tr>
<th scope="col">順位</th>
<th scope="col">プレイヤー</th>
- <th scope="col">スコア</th>
- <th scope="col">提出時刻</th>
+ <th scope="col">スコア1</th>
+ <th scope="col">スコア2</th>
+ <th scope="col">合計スコア</th>
+ <th scope="col">提出時刻1</th>
+ <th scope="col">提出時刻2</th>
</tr>
</thead>
<tbody>
{{ range .Entries }}
<tr>
<td>{{ .Rank }}</td>
- <td>{{ .Username }}</td>
+ <td>{{ .Username }}{{ if .UserLabel }} ({{ .UserLabel }}){{ end }}</td>
<td>{{ .Score1 }}</td>
<td>{{ .Score2 }}</td>
<td>{{ .TotalScore }}</td>