aboutsummaryrefslogtreecommitdiffhomepage
path: root/backend/admin/templates/dashboard.html
blob: 2e9336a81338b727a74aa24015e750886b6ee913 (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
{{ template "base.html" . }}

{{ define "content" }}
<p>
  <a href="{{ .BasePath }}admin/users">Users</a>
</p>
<p>
  <a href="{{ .BasePath }}admin/games">Games</a>
</p>
<p>
  <a href="{{ .BasePath }}admin/problems">Problems</a>
</p>
<p>
  <a href="{{ .BasePath }}admin/tournaments">Tournaments</a>
</p>
<p>
  <a href="{{ .BasePath }}admin/online-qualifying-ranking">Online Qualifying Ranking</a>
</p>
<form method="post" action="{{ .BasePath }}admin/fix">
  <button type="submit">fix</button>
</form>
<form method="post" action="{{ .BasePath }}logout">
  <button type="submit">Logout</button>
</form>
{{ end }}