Files
Atay-Makhzan/templates/repo/settings/webhook/new.tmpl
T

47 lines
2.0 KiB
Handlebars
Raw Normal View History

2015-08-27 00:30:06 +08:00
{{template "base/head" .}}
<div class="page-content repository settings new webhook">
2015-08-27 00:30:06 +08:00
{{template "repo/header" .}}
{{template "repo/settings/navbar" .}}
2015-08-27 00:30:06 +08:00
<div class="ui container">
{{template "base/alert" .}}
<h4 class="ui top attached header">
{{if .PageIsSettingsHooksNew}}{{.i18n.Tr "repo.settings.add_webhook"}}{{else}}{{.i18n.Tr "repo.settings.update_webhook"}}{{end}}
<div class="ui right">
2017-05-29 09:17:15 +02:00
{{if eq .HookType "gitea"}}
2020-12-09 01:12:15 +01:00
<img width="26" height="26" src="{{StaticUrlPrefix}}/img/gitea-sm.png">
2017-05-29 09:17:15 +02:00
{{else if eq .HookType "gogs"}}
2020-12-09 01:12:15 +01:00
<img width="26" height="26" src="{{StaticUrlPrefix}}/img/gogs.ico">
{{else if eq .HookType "slack"}}
2020-12-09 01:12:15 +01:00
<img width="26" height="26" src="{{StaticUrlPrefix}}/img/slack.png">
2017-08-28 13:06:45 +08:00
{{else if eq .HookType "discord"}}
2020-12-09 01:12:15 +01:00
<img width="26" height="26" src="{{StaticUrlPrefix}}/img/discord.png">
2017-11-21 12:26:43 +08:00
{{else if eq .HookType "dingtalk"}}
2020-12-09 01:12:15 +01:00
<img width="26" height="26" src="{{StaticUrlPrefix}}/img/dingtalk.ico">
2019-04-18 22:45:02 -04:00
{{else if eq .HookType "telegram"}}
2020-12-09 01:12:15 +01:00
<img width="26" height="26" src="{{StaticUrlPrefix}}/img/telegram.png">
2019-04-20 00:18:06 +10:00
{{else if eq .HookType "msteams"}}
2020-12-09 01:12:15 +01:00
<img width="26" height="26" src="{{StaticUrlPrefix}}/img/msteams.png">
2020-02-12 16:48:28 +08:00
{{else if eq .HookType "feishu"}}
2020-12-09 01:12:15 +01:00
<img width="26" height="26" src="{{StaticUrlPrefix}}/img/feishu.png">
2020-03-28 14:09:55 +01:00
{{else if eq .HookType "matrix"}}
2020-12-09 01:12:15 +01:00
<img width="26" height="26" src="{{StaticUrlPrefix}}/img/matrix.svg">
{{end}}
2015-12-07 23:30:52 +01:00
</div>
</h4>
<div class="ui attached segment">
{{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" .}}
2019-04-18 22:45:02 -04:00
{{template "repo/settings/webhook/telegram" .}}
2019-04-20 00:18:06 +10:00
{{template "repo/settings/webhook/msteams" .}}
2020-02-12 16:48:28 +08:00
{{template "repo/settings/webhook/feishu" .}}
2020-03-28 14:09:55 +01:00
{{template "repo/settings/webhook/matrix" .}}
2014-08-09 15:40:10 -07:00
</div>
{{template "repo/settings/webhook/history" .}}
2014-08-09 15:40:10 -07:00
</div>
</div>
2015-08-27 00:30:06 +08:00
{{template "base/footer" .}}