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