2015-08-26 18:30:06 +02:00
|
|
|
{{template "base/head" .}}
|
|
|
|
<div class="organization settings new webhook">
|
2015-12-07 23:30:52 +01:00
|
|
|
{{template "org/header" .}}
|
|
|
|
<div class="ui container">
|
|
|
|
<div class="ui grid">
|
|
|
|
{{template "org/settings/navbar" .}}
|
|
|
|
<div class="twelve wide column content">
|
|
|
|
{{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"}}
|
2017-07-28 07:51:20 +02:00
|
|
|
<img class="img-13" src="{{AppSubUrl}}/img/gitea-sm.png">
|
2017-05-29 09:17:15 +02:00
|
|
|
{{else if eq .HookType "gogs"}}
|
|
|
|
<img class="img-13" src="{{AppSubUrl}}/img/gogs.ico">
|
2015-12-07 23:30:52 +01:00
|
|
|
{{else if eq .HookType "slack"}}
|
|
|
|
<img class="img-13" src="{{AppSubUrl}}/img/slack.png">
|
2017-10-25 07:13:45 +02:00
|
|
|
{{else if eq .HookType "discord"}}
|
|
|
|
<img class="img-13" src="{{AppSubUrl}}/img/discord.png">
|
2015-12-07 23:30:52 +01:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
2017-05-29 09:17:15 +02:00
|
|
|
{{template "repo/settings/hook_gitea" .}}
|
2015-12-07 23:30:52 +01:00
|
|
|
{{template "repo/settings/hook_gogs" .}}
|
|
|
|
{{template "repo/settings/hook_slack" .}}
|
2017-08-30 07:36:52 +02:00
|
|
|
{{template "repo/settings/hook_discord" .}}
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
2015-08-26 18:30:06 +02:00
|
|
|
|
2015-12-07 23:30:52 +01:00
|
|
|
{{template "repo/settings/hook_history" .}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-09-04 13:17:00 +02:00
|
|
|
</div>
|
2015-08-26 18:30:06 +02:00
|
|
|
{{template "base/footer" .}}
|