aboutsummaryrefslogtreecommitdiffhomepage
path: root/backend/admin/templates/dashboard.html
blob: 7302cf9ff11252238969c99f305f8ee2d2d034b2 (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
26
27
28
{{ 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>
<p>
  <a href="{{ .BasePath }}admin/queue/">Task Queue</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 }}