2015-08-26 04:03:30 -06:00
|
|
|
{{template "base/head" .}}
|
2023-02-01 15:56:10 -07:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content repository settings edit githook">
|
2015-08-26 04:03:30 -06:00
|
|
|
{{template "repo/header" .}}
|
2017-03-15 16:39:38 -06:00
|
|
|
{{template "repo/settings/navbar" .}}
|
2015-08-26 04:03:30 -06:00
|
|
|
<div class="ui container">
|
2017-03-15 16:39:38 -06:00
|
|
|
{{template "base/alert" .}}
|
|
|
|
<h4 class="ui top attached header">
|
2022-06-27 14:58:46 -06:00
|
|
|
{{.locale.Tr "repo.settings.githooks"}}
|
2017-03-15 16:39:38 -06:00
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
2022-06-27 14:58:46 -06:00
|
|
|
<p>{{.locale.Tr "repo.settings.githook_edit_desc"}}</p>
|
2017-03-15 16:39:38 -06:00
|
|
|
<form class="ui form" action="{{.Link}}" method="post">
|
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
{{with .Hook}}
|
|
|
|
<div class="inline field">
|
2022-06-27 14:58:46 -06:00
|
|
|
<label>{{$.locale.Tr "repo.settings.githook_name"}}</label>
|
2020-11-13 20:57:34 -07:00
|
|
|
<span class="hook-filename">{{.Name}}</span>
|
2017-03-15 16:39:38 -06:00
|
|
|
</div>
|
|
|
|
<div class="field">
|
2022-06-27 14:58:46 -06:00
|
|
|
<label for="content">{{$.locale.Tr "repo.settings.githook_content"}}</label>
|
2023-02-18 21:06:14 -07:00
|
|
|
<textarea id="content" name="content" class="gt-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 16:39:38 -06:00
|
|
|
</div>
|
|
|
|
<div class="inline field">
|
2022-06-27 14:58:46 -06:00
|
|
|
<button class="ui green button">{{$.locale.Tr "repo.settings.update_githook"}}</button>
|
2017-03-15 16:39:38 -06:00
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</form>
|
2015-12-07 15:30:52 -07:00
|
|
|
</div>
|
2014-10-06 15:50:00 -06:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-12-07 15:30:52 -07:00
|
|
|
{{template "base/footer" .}}
|