diff options
Diffstat (limited to 'backend/admin/templates/online_qualifying_ranking.html')
| -rw-r--r-- | backend/admin/templates/online_qualifying_ranking.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/backend/admin/templates/online_qualifying_ranking.html b/backend/admin/templates/online_qualifying_ranking.html new file mode 100644 index 0000000..3b00046 --- /dev/null +++ b/backend/admin/templates/online_qualifying_ranking.html @@ -0,0 +1,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 }} |
