From 65588b732c087e191a8f03e240fdfc5dcfc24199 Mon Sep 17 00:00:00 2001 From: Kerwin Bryant Date: Tue, 5 Sep 2023 20:00:28 +0800 Subject: Extract common code to new template (#26903) I noticed that the code of several new webhook pages is highly repetitive, so I pulled out the common parts to a new template, unified reference, unified maintenance --------- Co-authored-by: KN4CK3R --- templates/webhook/new.tmpl | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 templates/webhook/new.tmpl (limited to 'templates/webhook/new.tmpl') diff --git a/templates/webhook/new.tmpl b/templates/webhook/new.tmpl new file mode 100644 index 0000000000..b5878fc930 --- /dev/null +++ b/templates/webhook/new.tmpl @@ -0,0 +1,20 @@ +

+ {{if .PageIsSettingsHooksNew}}{{.locale.Tr "repo.settings.add_webhook"}}{{else}}{{.locale.Tr "repo.settings.update_webhook"}}{{end}} +
+ {{template "shared/webhook/icon" .}} +
+

+
+ {{template "repo/settings/webhook/gitea" .}} + {{template "repo/settings/webhook/gogs" .}} + {{template "repo/settings/webhook/slack" .}} + {{template "repo/settings/webhook/discord" .}} + {{template "repo/settings/webhook/dingtalk" .}} + {{template "repo/settings/webhook/telegram" .}} + {{template "repo/settings/webhook/msteams" .}} + {{template "repo/settings/webhook/feishu" .}} + {{template "repo/settings/webhook/matrix" .}} + {{template "repo/settings/webhook/wechatwork" .}} + {{template "repo/settings/webhook/packagist" .}} +
+{{template "repo/settings/webhook/history" .}} -- cgit v1.2.3