summaryrefslogtreecommitdiff
path: root/internal/router/template.go
diff options
context:
space:
mode:
authorLibravatar tobi <31960611+tsmethurst@users.noreply.github.com>2023-11-22 12:17:42 +0100
committerLibravatar GitHub <noreply@github.com>2023-11-22 12:17:42 +0100
commit8c2d94c16853464828cbeba255cff2c69e96da78 (patch)
tree5a1ad19f206709f9347a9019618068eb06709f92 /internal/router/template.go
parent[feature] Federate status language in and out (#2366) (diff)
downloadgotosocial-8c2d94c16853464828cbeba255cff2c69e96da78.tar.xz
[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
Diffstat (limited to 'internal/router/template.go')
-rw-r--r--internal/router/template.go5
1 files changed, 5 insertions, 0 deletions
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,
})
}