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