From 80170099f8403ffe986276f02cde3ff94c41fb2b Mon Sep 17 00:00:00 2001 From: localhost_frssoft Date: Wed, 19 Oct 2022 17:36:33 +0300 Subject: [PATCH] Add reactions page tmpl --- templates/reactionspage.tmpl | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 templates/reactionspage.tmpl diff --git a/templates/reactionspage.tmpl b/templates/reactionspage.tmpl new file mode 100644 index 0000000..dd4335c --- /dev/null +++ b/templates/reactionspage.tmpl @@ -0,0 +1,8 @@ +{{with .Data}} +{{template "header.tmpl" (WithContext .CommonData $.Ctx)}} +{{range .Reactions}} +
{{.Name}}
+ {{template "userlist.tmpl" (WithContext .Accounts $.Ctx)}} + +{{end}} +{{end}}