2015-08-26 12:30:06 -04:00
|
|
|
{{if eq .HookType "slack"}}
|
2022-06-27 16:58:46 -04:00
|
|
|
<p>{{.locale.Tr "repo.settings.add_web_hook_desc" "https://slack.com" (.locale.Tr "repo.settings.web_hook_name_slack") | Str2html}}</p>
|
2019-03-18 22:33:20 -04:00
|
|
|
<form class="ui form" action="{{.BaseLink}}/slack/{{or .Webhook.ID "new"}}" method="post">
|
2015-12-07 17:30:52 -05:00
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<div class="required field {{if .Err_PayloadURL}}error{{end}}">
|
2022-06-27 16:58:46 -04:00
|
|
|
<label for="payload_url">{{.locale.Tr "repo.settings.payload_url"}}</label>
|
2015-12-07 17:30:52 -05:00
|
|
|
<input id="payload_url" name="payload_url" type="url" value="{{.Webhook.URL}}" autofocus required>
|
|
|
|
</div>
|
|
|
|
<div class="required field {{if .Err_Channel}}error{{end}}">
|
2022-06-27 16:58:46 -04:00
|
|
|
<label for="channel">{{.locale.Tr "repo.settings.slack_channel"}}</label>
|
2015-12-07 17:30:52 -05:00
|
|
|
<input id="channel" name="channel" value="{{.SlackHook.Channel}}" placeholder="e.g. #general" required>
|
|
|
|
</div>
|
2015-08-28 23:49:59 -04:00
|
|
|
|
2015-12-07 17:30:52 -05:00
|
|
|
<div class="field">
|
2022-06-27 16:58:46 -04:00
|
|
|
<label for="username">{{.locale.Tr "repo.settings.slack_username"}}</label>
|
2016-12-02 00:07:37 -05:00
|
|
|
<input id="username" name="username" value="{{.SlackHook.Username}}" placeholder="e.g. Gitea">
|
2015-12-07 17:30:52 -05:00
|
|
|
</div>
|
|
|
|
<div class="field">
|
2022-06-27 16:58:46 -04:00
|
|
|
<label for="icon_url">{{.locale.Tr "repo.settings.slack_icon_url"}}</label>
|
2015-12-07 17:30:52 -05:00
|
|
|
<input id="icon_url" name="icon_url" value="{{.SlackHook.IconURL}}" placeholder="e.g. https://example.com/img/favicon.png">
|
|
|
|
</div>
|
|
|
|
<div class="field">
|
2022-06-27 16:58:46 -04:00
|
|
|
<label for="color">{{.locale.Tr "repo.settings.slack_color"}}</label>
|
2015-12-07 17:30:52 -05:00
|
|
|
<input id="color" name="color" value="{{.SlackHook.Color}}" placeholder="e.g. #dd4b39, good, warning, danger">
|
|
|
|
</div>
|
2018-05-16 10:01:55 -04:00
|
|
|
{{template "repo/settings/webhook/settings" .}}
|
2015-12-07 17:30:52 -05:00
|
|
|
</form>
|
2015-08-26 12:30:06 -04:00
|
|
|
{{end}}
|