forgejo_a_10.0.1/templates/repo/settings/webhook/link_menu.tmpl
David Rotermund 3ce683f79b
Some checks failed
Integration tests for the release process / release-simulation (push) Has been cancelled
Init
2025-02-23 03:12:21 +01:00

12 lines
265 B
Go HTML Template

{{$size := 20}}
{{if .Size}}
{{$size = .Size}}
{{end}}
<div class="menu">
{{range .WebhookList}}
<a class="item" href="{{$.BaseLinkNew}}/{{.Type}}/new">
{{.Icon $size}}
{{ctx.Locale.Tr (print "repo.settings.web_hook_name_" .Type)}}
</a>
{{end}}
</div>