aboutsummaryrefslogtreecommitdiffhomepage
path: root/backend/admin/templates/games.html
diff options
context:
space:
mode:
Diffstat (limited to 'backend/admin/templates/games.html')
-rw-r--r--backend/admin/templates/games.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/backend/admin/templates/games.html b/backend/admin/templates/games.html
new file mode 100644
index 0000000..244fc94
--- /dev/null
+++ b/backend/admin/templates/games.html
@@ -0,0 +1,17 @@
+{{ template "base.html" . }}
+
+{{ define "breadcrumb" }}
+<a href="/admin/dashboard">Dashboard</a>
+{{ end }}
+
+{{ define "content" }}
+<ul>
+ {{ range .Games }}
+ <li>
+ <a href="/admin/games/{{ .GameID }}">
+ {{ .DisplayName }} (id={{ .GameID }})
+ </a>
+ </li>
+ {{ end }}
+</ul>
+{{ end }}