aboutsummaryrefslogtreecommitdiffhomepage
path: root/backend/admin/templates/games.html
blob: 47dc4a33d2731de38dccee8ffef586e4e0dc2280 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{ template "base.html" . }}

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

{{ define "content" }}
<ul>
  {{ range .Games }}
    <li>
      <a href="/admin/games/{{ .GameID }}">
        {{ .DisplayName }} (id={{ .GameID }} type={{ .GameType }} state={{ .State }})
      </a>
    </li>
  {{ end }}
</ul>
{{ end }}