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

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

{{ define "content" }}
<div>
  <a href="{{ .BasePath }}admin/tournaments/new">Create New Tournament</a>
</div>
<ul>
  {{ range .Tournaments }}
    <li>
      <a href="{{ $.BasePath }}admin/tournaments/{{ .TournamentID }}">
        {{ .DisplayName }} (id={{ .TournamentID }} bracket_size={{ .BracketSize }})
      </a>
    </li>
  {{ end }}
</ul>
{{ end }}