blob: 17a0d6aed188d2332aab56af76f43b702fff94c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{{ 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/online-qualifying-ranking?game_1=7&game_2=8">Online Qualifying Ranking</a>
</p>
<form method="post" action="{{ .BasePath }}/fix">
<button type="submit">fix</button>
</form>
<form method="post" action="{{ .BasePath }}/logout">
<button type="submit">Logout</button>
</form>
{{ end }}
|