aboutsummaryrefslogtreecommitdiffstats
path: root/templates/repo/settings/webhook/link_menu.tmpl
blob: e2c86dcc3c089a7b4db002a23c5632f06e0b0aef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{{$size := 20}}
{{if .Size}}
	{{$size = .Size}}
{{end}}
<div class="menu">
	<a class="item" href="{{.BaseLinkNew}}/gitea/new">
		{{template "shared/webhook/icon" (dict "HookType" "gitea" "Size" $size)}}
		{{ctx.Locale.Tr "repo.settings.web_hook_name_gitea"}}
	</a>
	<a class="item" href="{{.BaseLinkNew}}/gogs/new">
		{{template "shared/webhook/icon" (dict "HookType" "gogs" "Size" $size)}}
		{{ctx.Locale.Tr "repo.settings.web_hook_name_gogs"}}
	</a>
	<a class="item" href="{{.BaseLinkNew}}/slack/new">
		{{template "shared/webhook/icon" (dict "HookType" "slack" "Size" $size)}}
		{{ctx.Locale.Tr "repo.settings.web_hook_name_slack"}}
	</a>
	<a class="item" href="{{.BaseLinkNew}}/discord/new">
		{{template "shared/webhook/icon" (dict "HookType" "discord" "Size" $size)}}
		{{ctx.Locale.Tr "repo.settings.web_hook_name_discord"}}
	</a>
	<a class="item" href="{{.BaseLinkNew}}/dingtalk/new">
		{{template "shared/webhook/icon" (dict "HookType" "dingtalk" "Size" $size)}}
		{{ctx.Locale.Tr "repo.settings.web_hook_name_dingtalk"}}
	</a>
	<a class="item" href="{{.BaseLinkNew}}/telegram/new">
		{{template "shared/webhook/icon" (dict "HookType" "telegram" "Size" $size)}}
		{{ctx.Locale.Tr "repo.settings.web_hook_name_telegram"}}
	</a>
	<a class="item" href="{{.BaseLinkNew}}/msteams/new">
		{{template "shared/webhook/icon" (dict "HookType" "msteams" "Size" $size)}}
		{{ctx.Locale.Tr "repo.settings.web_hook_name_msteams"}}
	</a>
	<a class="item" href="{{.BaseLinkNew}}/feishu/new">
		{{template "shared/webhook/icon" (dict "HookType" "feishu" "Size" $size)}}
		{{ctx.Locale.Tr "repo.settings.web_hook_name_feishu_or_larksuite"}}
	</a>
	<a class="item" href="{{.BaseLinkNew}}/matrix/new">
		{{template "shared/webhook/icon" (dict "HookType" "matrix" "Size" $size)}}
		{{ctx.Locale.Tr "repo.settings.web_hook_name_matrix"}}
	</a>
	<a class="item" href="{{.BaseLinkNew}}/wechatwork/new">
		{{template "shared/webhook/icon" (dict "HookType" "wechatwork" "Size" $size)}}
		{{ctx.Locale.Tr "repo.settings.web_hook_name_wechatwork"}}
	</a>
	<a class="item" href="{{.BaseLinkNew}}/packagist/new">
		{{template "shared/webhook/icon" (dict "HookType" "packagist" "Size" $size)}}
		{{ctx.Locale.Tr "repo.settings.web_hook_name_packagist"}}
	</a>
</div>