From 8c2d94c16853464828cbeba255cff2c69e96da78 Mon Sep 17 00:00:00 2001 From: tobi <31960611+tsmethurst@users.noreply.github.com> Date: Wed, 22 Nov 2023 12:17:42 +0100 Subject: [feature] Poll web view (#2377) * [feature] Render polls nicely on the web view * use figure for poll, other small tweaks * reverse share + count (lines up better) * poll options list entries * fix up some remaining things --- internal/router/template.go | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'internal/router') diff --git a/internal/router/template.go b/internal/router/template.go index d8b5b5edd..804f532bd 100644 --- a/internal/router/template.go +++ b/internal/router/template.go @@ -168,6 +168,10 @@ func acctInstance(acct string) string { return "" } +func increment(i int) int { + return i + 1 +} + func LoadTemplateFunctions(engine *gin.Engine) { engine.SetFuncMap(template.FuncMap{ "escape": escape, @@ -180,5 +184,6 @@ func LoadTemplateFunctions(engine *gin.Engine) { "timestampPrecise": timestampPrecise, "emojify": emojify, "acctInstance": acctInstance, + "increment": increment, }) } -- cgit v1.2.3