2023-04-23 03:21:21 -07:00
|
|
|
{{template "repo/settings/layout_head" (dict "ctxData" . "pageClass" "repository settings edit githook")}}
|
|
|
|
<div class="repo-setting-content">
|
2017-03-15 15:39:38 -07:00
|
|
|
<h4 class="ui top attached header">
|
2023-09-25 01:56:50 -07:00
|
|
|
{{ctx.Locale.Tr "repo.settings.githooks"}}
|
2017-03-15 15:39:38 -07:00
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
2023-09-25 01:56:50 -07:00
|
|
|
<p>{{ctx.Locale.Tr "repo.settings.githook_edit_desc"}}</p>
|
2017-03-15 15:39:38 -07:00
|
|
|
<form class="ui form" action="{{.Link}}" method="post">
|
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
{{with .Hook}}
|
|
|
|
<div class="inline field">
|
2023-09-25 01:56:50 -07:00
|
|
|
<label>{{ctx.Locale.Tr "repo.settings.githook_name"}}</label>
|
2020-11-13 20:57:34 -07:00
|
|
|
<span class="hook-filename">{{.Name}}</span>
|
2017-03-15 15:39:38 -07:00
|
|
|
</div>
|
|
|
|
<div class="field">
|
2023-09-25 01:56:50 -07:00
|
|
|
<label for="content">{{ctx.Locale.Tr "repo.settings.githook_content"}}</label>
|
2024-03-24 11:23:38 -07:00
|
|
|
<textarea id="content" name="content" class="tw-hidden">{{if .IsActive}}{{.Content}}{{else}}{{.Sample}}{{end}}</textarea>
|
2020-11-13 20:57:34 -07:00
|
|
|
<div class="editor-loading is-loading"></div>
|
2017-03-15 15:39:38 -07:00
|
|
|
</div>
|
|
|
|
<div class="inline field">
|
2023-09-25 01:56:50 -07:00
|
|
|
<button class="ui primary button">{{ctx.Locale.Tr "repo.settings.update_githook"}}</button>
|
2017-03-15 15:39:38 -07:00
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</form>
|
2015-12-07 15:30:52 -07:00
|
|
|
</div>
|
2014-10-06 14:50:00 -07:00
|
|
|
</div>
|
2023-04-23 03:21:21 -07:00
|
|
|
{{template "repo/settings/layout_footer" .}}
|