diff options
Diffstat (limited to 'backend/admin/templates/games.html')
| -rw-r--r-- | backend/admin/templates/games.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/backend/admin/templates/games.html b/backend/admin/templates/games.html index 402c702..d642f07 100644 --- a/backend/admin/templates/games.html +++ b/backend/admin/templates/games.html @@ -11,15 +11,15 @@ <ul> {{ range .Games }} <li> - <a href="{{ $.BasePath }}/admin/games/{{ .GameID }}"> + <a href="{{ $.BasePath }}admin/games/{{ .GameID }}"> {{ .DisplayName }} (id={{ .GameID }} type={{ .GameType }} {{ if not .IsPublic }}private{{ end }}) </a> <ul> {{ if .IsPublic }} - <li><a href="{{ $.BasePath }}/golf/{{ .GameID }}/play">Play</a></li> + <li><a href="{{ $.BasePath }}golf/{{ .GameID }}/play">Play</a></li> {{ end }} {{ if .IsPublic }} - <li><a href="{{ $.BasePath }}/golf/{{ .GameID }}/watch">Watch</a></li> + <li><a href="{{ $.BasePath }}golf/{{ .GameID }}/watch">Watch</a></li> {{ end }} </ul> </li> |
