2019-03-19 05:33:20 +03:00
{{ template "base/head" . }}
<div class="admin new webhook">
{{ template "admin/navbar" . }}
<div class="ui container">
{{ template "base/alert" . }}
<h4 class="ui top attached header">
{{ if .PageIsAdminHooksNew }}
{{ .i18n .Tr "admin.hooks.add_webhook" }}
{{ else }}
{{ .i18n .Tr "admin.hooks.update_webhook" }}
{{ end }}
<div class="ui right">
{{ if eq .HookType "gitea" }}
2019-10-22 15:11:01 +03:00
<img class="img-13" src=" {{ StaticUrlPrefix }} /img/gitea-sm.png">
2019-03-19 05:33:20 +03:00
{{ else if eq .HookType "gogs" }}
2019-10-22 15:11:01 +03:00
<img class="img-13" src=" {{ StaticUrlPrefix }} /img/gogs.ico">
2019-03-19 05:33:20 +03:00
{{ else if eq .HookType "slack" }}
2019-10-22 15:11:01 +03:00
<img class="img-13" src=" {{ StaticUrlPrefix }} /img/slack.png">
2019-03-19 05:33:20 +03:00
{{ else if eq .HookType "discord" }}
2019-10-22 15:11:01 +03:00
<img class="img-13" src=" {{ StaticUrlPrefix }} /img/discord.png">
2019-03-19 05:33:20 +03:00
{{ else if eq .HookType "dingtalk" }}
2019-10-22 15:11:01 +03:00
<img class="img-13" src=" {{ StaticUrlPrefix }} /img/dingtalk.ico">
2019-08-27 01:59:10 +03:00
{{ else if eq .HookType "telegram" }}
2019-10-22 15:11:01 +03:00
<img class="img-13" src=" {{ StaticUrlPrefix }} /img/telegram.png">
2019-04-19 17:18:06 +03:00
{{ else if eq .HookType "msteams" }}
2019-10-22 15:11:01 +03:00
<img class="img-13" src=" {{ StaticUrlPrefix }} /img/msteams.png">
2020-02-12 11:48:28 +03:00
{{ else if eq .HookType "feishu" }}
<img class="img-13" src=" {{ StaticUrlPrefix }} /img/feishu.png">
2020-06-03 05:04:52 +03:00
{{ else if eq .HookType "matrix" }}
<img class="img-13" src=" {{ StaticUrlPrefix }} /img/matrix.svg">
2019-03-19 05:33:20 +03:00
{{ end }}
</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-08-27 01:59:10 +03:00
{{ template "repo/settings/webhook/telegram" . }}
2019-04-19 17:18:06 +03:00
{{ template "repo/settings/webhook/msteams" . }}
2020-02-12 11:48:28 +03:00
{{ template "repo/settings/webhook/feishu" . }}
2020-06-03 05:04:52 +03:00
{{ template "repo/settings/webhook/matrix" . }}
2019-03-19 05:33:20 +03:00
</div>
{{ template "repo/settings/webhook/history" . }}
</div>
</div>
{{ template "base/footer" . }}