From 1a57267a17c2fc17fb6e104846fabc3e363c326c Mon Sep 17 00:00:00 2001 From: Emile Date: Fri, 16 Aug 2024 19:50:26 +0200 Subject: initial commit --- templates/bots.html | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 templates/bots.html (limited to 'templates/bots.html') diff --git a/templates/bots.html b/templates/bots.html new file mode 100644 index 0000000..34fa0c2 --- /dev/null +++ b/templates/bots.html @@ -0,0 +1,24 @@ +{{ define "bots" }} + +{{ template "head" . }} + + {{ template "nav" . }} + + +

All Bots

+ + + {{ range $bot := .bots }} + + + + + {{ end }} +
+ {{ $bot.Name }} + + {{ range $idx, $usr := $bot.Users }}{{if $idx}},{{end}}{{ $usr.Name }}{{ end }} +
+ +{{ template "footer" . }} +{{ end }} -- cgit 1.4.1