aboutsummaryrefslogtreecommitdiffhomepage
path: root/backend/admin/templates/dashboard.html
blob: 5a7b4848bb941ea3e06aef0d2cfe51c37db54742 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{{ 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/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 }}