mirror of
https://github.com/go-gitea/gitea.git
synced 2026-08-10 05:24:18 +09:00
1. fix dirty "list" styles for "githooks" and "webhooks" 2. fix git hook edit page layout 3. fix codemirror editor styles 4. fix incorrect "ui attached header" width
21 lines
856 B
Handlebars
21 lines
856 B
Handlebars
{{template "repo/settings/layout_head" (dict "pageClass" "repository settings githooks")}}
|
|
<div class="repo-setting-content">
|
|
<h4 class="ui top attached header">
|
|
{{ctx.Locale.Tr "repo.settings.githooks"}}
|
|
</h4>
|
|
<div class="ui attached segment">
|
|
<div>{{ctx.Locale.Tr "repo.settings.githooks_desc"}}</div>
|
|
{{if .Hooks}}<div class="divider"></div>{{end}}
|
|
<div class="flex-divided-list">
|
|
{{range .Hooks}}
|
|
<div class="item flex-text-block">
|
|
<span class="{{if .IsActive}}tw-text-green{{else}}tw-text-text-light{{end}}">{{svg "octicon-dot-fill" 22}}</span>
|
|
<span class="gt-ellipsis tw-flex-1">{{.Name}}</span>
|
|
<a class="muted tw-pr-2" href="{{$.RepoLink}}/settings/hooks/git/{{.Name|PathEscape}}">{{svg "octicon-pencil"}}</a>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{template "repo/settings/layout_footer" .}}
|