2017-08-27 23:06:45 -06:00
|
|
|
{{if eq .HookType "discord"}}
|
2024-02-22 11:05:47 -07:00
|
|
|
<p>{{ctx.Locale.Tr "repo.settings.add_web_hook_desc" "https://discord.com" (ctx.Locale.Tr "repo.settings.web_hook_name_discord")}}</p>
|
2019-03-18 20:33:20 -06:00
|
|
|
<form class="ui form" action="{{.BaseLink}}/discord/{{or .Webhook.ID "new"}}" method="post">
|
2017-08-27 23:06:45 -06: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>
|
2017-08-27 23:06:45 -06:00
|
|
|
<input id="payload_url" name="payload_url" type="url" value="{{.Webhook.URL}}" autofocus required>
|
|
|
|
</div>
|
|
|
|
<div class="field">
|
2023-09-25 02:56:50 -06:00
|
|
|
<label for="username">{{ctx.Locale.Tr "repo.settings.discord_username"}}</label>
|
2023-06-14 12:17:58 -06:00
|
|
|
<input id="username" name="username" value="{{.DiscordHook.Username}}" placeholder="Gitea">
|
2017-08-27 23:06:45 -06:00
|
|
|
</div>
|
|
|
|
<div class="field">
|
2023-09-25 02:56:50 -06:00
|
|
|
<label for="icon_url">{{ctx.Locale.Tr "repo.settings.discord_icon_url"}}</label>
|
2023-06-14 12:17:58 -06:00
|
|
|
<input id="icon_url" name="icon_url" value="{{.DiscordHook.IconURL}}" placeholder="https://example.com/assets/img/logo.svg">
|
2017-08-27 23:06:45 -06:00
|
|
|
</div>
|
2018-05-16 08:01:55 -06:00
|
|
|
{{template "repo/settings/webhook/settings" .}}
|
2017-08-27 23:06:45 -06:00
|
|
|
</form>
|
|
|
|
{{end}}
|