blob: 6d6bd6815b6a2ee21502d79ce9de4a941b200d1d (
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
|
{{ template "base.html" . }}
{{ define "breadcrumb" }}
<a href="/iosdc-japan/2024/code-battle/admin/dashboard">Dashboard</a>
{{ end }}
{{ define "content" }}
<ul>
{{ range .Games }}
<li>
<a href="/iosdc-japan/2024/code-battle/admin/games/{{ .GameID }}">
{{ .DisplayName }} (id={{ .GameID }} type={{ .GameType }} state={{ .State }})
</a>
<ul>
{{ if and (ne .State "closed") (ne .State "finished") }}
<li>
<a href="/iosdc-japan/2024/code-battle/golf/{{ .GameID }}/watch">Watch</a>
</li>
{{ end }}
</ul>
</li>
{{ end }}
</ul>
{{ end }}
|