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