aboutsummaryrefslogtreecommitdiffhomepage
path: root/backend/admin/templates/online_qualifying_ranking.html
blob: 3b0004693090f705e061f1e31f43d46969d2dce4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{{ template "base.html" . }}

{{ define "breadcrumb" }}
<a href="{{ .BasePath }}/admin/dashboard">Dashboard</a>
{{ end }}

{{ define "content" }}
<table>
  <thead>
    <tr>
      <th scope="col">順位</th>
      <th scope="col">プレイヤー</th>
      <th scope="col">スコア</th>
      <th scope="col">提出時刻</th>
    </tr>
  </thead>
  <tbody>
    {{ range .Entries }}
      <tr>
        <td>{{ .Rank }}</td>
        <td>{{ .Username }}</td>
        <td>{{ .Score1 }}</td>
        <td>{{ .Score2 }}</td>
        <td>{{ .TotalScore }}</td>
        <td>{{ .SubmittedAt1 }}</td>
        <td>{{ .SubmittedAt2 }}</td>
      </tr>
    {{ end }}
  </tbody>
</table>
{{ end }}