2015-08-26 10:30:06 -06:00
|
|
|
{{if eq .HookType "slack"}}
|
2024-02-22 11:05:47 -07:00
|
|
|
<p>{{ctx.Locale.Tr "repo.settings.add_web_hook_desc" "https://slack.com" (ctx.Locale.Tr "repo.settings.web_hook_name_slack")}}</p>
|
2019-03-18 20:33:20 -06:00
|
|
|
<form class="ui form" action="{{.BaseLink}}/slack/{{or .Webhook.ID "new"}}" method="post">
|
2015-12-07 15:30:52 -07:00
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<div class="required field {{if .Err_PayloadURL}}error{{end}}">
|
2023-09-25 02:56:50 -06:00
|
|
|
<label for="payload_url">{{ctx.Locale.Tr "repo.settings.payload_url"}}</label>
|
2015-12-07 15:30:52 -07: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}}">
|
2023-09-25 02:56:50 -06:00
|
|
|
<label for="channel">{{ctx.Locale.Tr "repo.settings.slack_channel"}}</label>
|
2023-06-14 12:17:58 -06:00
|
|
|
<input id="channel" name="channel" value="{{.SlackHook.Channel}}" placeholder="#general" required>
|
2015-12-07 15:30:52 -07:00
|
|
|
</div>
|
2015-08-28 21:49:59 -06:00
|
|
|
|
2015-12-07 15:30:52 -07:00
|
|
|
<div class="field">
|
2023-09-25 02:56:50 -06:00
|
|
|
<label for="username">{{ctx.Locale.Tr "repo.settings.slack_username"}}</label>
|
2023-06-14 12:17:58 -06:00
|
|
|
<input id="username" name="username" value="{{.SlackHook.Username}}" placeholder="Gitea">
|
2015-12-07 15:30:52 -07:00
|
|
|
</div>
|
|
|
|
<div class="field">
|
2023-09-25 02:56:50 -06:00
|
|
|
<label for="icon_url">{{ctx.Locale.Tr "repo.settings.slack_icon_url"}}</label>
|
2023-06-14 12:17:58 -06:00
|
|
|
<input id="icon_url" name="icon_url" value="{{.SlackHook.IconURL}}" placeholder="https://example.com/img/favicon.png">
|
2015-12-07 15:30:52 -07:00
|
|
|
</div>
|
|
|
|
<div class="field">
|
2023-09-25 02:56:50 -06:00
|
|
|
<label for="color">{{ctx.Locale.Tr "repo.settings.slack_color"}}</label>
|
2023-06-14 12:17:58 -06:00
|
|
|
<input id="color" name="color" value="{{.SlackHook.Color}}" placeholder="#dd4b39, good, warning, danger">
|
2015-12-07 15:30:52 -07:00
|
|
|
</div>
|
2018-05-16 08:01:55 -06:00
|
|
|
{{template "repo/settings/webhook/settings" .}}
|
2015-12-07 15:30:52 -07:00
|
|
|
</form>
|
2015-08-26 10:30:06 -06:00
|
|
|
{{end}}
|