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