2015-08-26 22:00:06 +05:30
|
|
|
{{template "base/head" .}}
|
|
|
|
<div class="repository settings new webhook">
|
|
|
|
{{template "repo/header" .}}
|
2017-03-16 04:09:38 +05:30
|
|
|
{{template "repo/settings/navbar" .}}
|
2015-08-26 22:00:06 +05:30
|
|
|
<div class="ui container">
|
2017-03-16 04:09:38 +05:30
|
|
|
{{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 12:47:15 +05:30
|
|
|
{{if eq .HookType "gitea"}}
|
2017-07-28 11:21:20 +05:30
|
|
|
<img class="img-13" src="{{AppSubUrl}}/img/gitea-sm.png">
|
2017-05-29 12:47:15 +05:30
|
|
|
{{else if eq .HookType "gogs"}}
|
|
|
|
<img class="img-13" src="{{AppSubUrl}}/img/gogs.ico">
|
2017-03-16 04:09:38 +05:30
|
|
|
{{else if eq .HookType "slack"}}
|
|
|
|
<img class="img-13" src="{{AppSubUrl}}/img/slack.png">
|
2017-08-28 10:36:45 +05:30
|
|
|
{{else if eq .HookType "discord"}}
|
|
|
|
<img class="img-13" src="{{AppSubUrl}}/img/discord.png">
|
2017-11-21 09:56:43 +05:30
|
|
|
{{else if eq .HookType "dingtalk"}}
|
|
|
|
<img class="img-13" src="{{AppSubUrl}}/img/dingtalk.ico">
|
2017-03-16 04:09:38 +05:30
|
|
|
{{end}}
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
2017-03-16 04:09:38 +05:30
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
2017-05-29 12:47:15 +05:30
|
|
|
{{template "repo/settings/hook_gitea" .}}
|
2017-03-16 04:09:38 +05:30
|
|
|
{{template "repo/settings/hook_gogs" .}}
|
|
|
|
{{template "repo/settings/hook_slack" .}}
|
2017-08-28 10:36:45 +05:30
|
|
|
{{template "repo/settings/hook_discord" .}}
|
2017-11-21 09:56:43 +05:30
|
|
|
{{template "repo/settings/hook_dingtalk" .}}
|
2014-08-10 04:10:10 +05:30
|
|
|
</div>
|
2017-03-16 04:09:38 +05:30
|
|
|
|
|
|
|
{{template "repo/settings/hook_history" .}}
|
2014-08-10 04:10:10 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
2015-08-26 22:00:06 +05:30
|
|
|
{{template "base/footer" .}}
|