summaryrefslogtreecommitdiffstats
path: root/templates/webhook/new.tmpl
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2024-10-18 20:33:49 +0200
committerDaniel Baumann <daniel@debian.org>2024-10-18 20:33:49 +0200
commitdd136858f1ea40ad3c94191d647487fa4f31926c (patch)
tree58fec94a7b2a12510c9664b21793f1ed560c6518 /templates/webhook/new.tmpl
parentInitial commit. (diff)
downloadforgejo-dd136858f1ea40ad3c94191d647487fa4f31926c.tar.xz
forgejo-dd136858f1ea40ad3c94191d647487fa4f31926c.zip
Adding upstream version 9.0.0.upstream/9.0.0upstreamdebian
Signed-off-by: Daniel Baumann <daniel@debian.org>
Diffstat (limited to 'templates/webhook/new.tmpl')
-rw-r--r--templates/webhook/new.tmpl44
1 files changed, 44 insertions, 0 deletions
diff --git a/templates/webhook/new.tmpl b/templates/webhook/new.tmpl
new file mode 100644
index 0000000..a3fd896
--- /dev/null
+++ b/templates/webhook/new.tmpl
@@ -0,0 +1,44 @@
+<h4 class="ui top attached header">
+ {{.CustomHeaderTitle}}
+ <div class="ui right type dropdown">
+ <div class="text tw-flex tw-items-center">
+ {{.ctxData.WebhookHandler.Icon 20}}
+ {{ctx.Locale.Tr (print "repo.settings.web_hook_name_" .ctxData.HookType)}}
+ </div>
+ {{svg "octicon-triangle-down" 14 "dropdown icon"}}
+ {{template "repo/settings/webhook/link_menu" .ctxData}}
+ </div>
+</h4>
+<div class="ui attached segment">
+ {{with .ctxData}}
+ <!-- the template argument cannot be dynamic -->
+ {{if eq .HookType "forgejo"}}
+ {{template "webhook/new/forgejo" .}}
+ {{else if eq .HookType "gitea"}}
+ {{template "webhook/new/gitea" .}}
+ {{else if eq .HookType "gogs"}}
+ {{template "webhook/new/gogs" .}}
+ {{else if eq .HookType "slack"}}
+ {{template "webhook/new/slack" .}}
+ {{else if eq .HookType "discord"}}
+ {{template "webhook/new/discord" .}}
+ {{else if eq .HookType "dingtalk"}}
+ {{template "webhook/new/dingtalk" .}}
+ {{else if eq .HookType "telegram"}}
+ {{template "webhook/new/telegram" .}}
+ {{else if eq .HookType "msteams"}}
+ {{template "webhook/new/msteams" .}}
+ {{else if eq .HookType "feishu"}}
+ {{template "webhook/new/feishu" .}}
+ {{else if eq .HookType "matrix"}}
+ {{template "webhook/new/matrix" .}}
+ {{else if eq .HookType "wechatwork"}}
+ {{template "webhook/new/wechatwork" .}}
+ {{else if eq .HookType "packagist"}}
+ {{template "webhook/new/packagist" .}}
+ {{else if eq .HookType "sourcehut_builds"}}
+ {{template "webhook/new/sourcehut_builds" .}}
+ {{end}}
+ {{end}}
+</div>
+{{template "repo/settings/webhook/history" .ctxData}}