2015-08-26 15:33:30 +05:30
|
|
|
{{template "base/head" .}}
|
2020-12-01 09:30:14 +05:30
|
|
|
<div class="page-content repository settings edit githook">
|
2015-08-26 15:33:30 +05:30
|
|
|
{{template "repo/header" .}}
|
2017-03-16 04:09:38 +05:30
|
|
|
{{template "repo/settings/navbar" .}}
|
2015-08-26 15:33:30 +05:30
|
|
|
<div class="ui container">
|
2017-03-16 04:09:38 +05:30
|
|
|
{{template "base/alert" .}}
|
|
|
|
<h4 class="ui top attached header">
|
|
|
|
{{.i18n.Tr "repo.settings.githooks"}}
|
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
|
|
|
<p>{{.i18n.Tr "repo.settings.githook_edit_desc"}}</p>
|
|
|
|
<form class="ui form" action="{{.Link}}" method="post">
|
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
{{with .Hook}}
|
|
|
|
<div class="inline field">
|
|
|
|
<label>{{$.i18n.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">
|
|
|
|
<label for="content">{{$.i18n.Tr "repo.settings.githook_content"}}</label>
|
2020-11-14 09:27:34 +05:30
|
|
|
<textarea id="content" name="content" class="hide">{{if .IsActive}}{{.Content}}{{else}}{{.Sample}}{{end}}</textarea>
|
|
|
|
<div class="editor-loading is-loading"></div>
|
2017-03-16 04:09:38 +05:30
|
|
|
</div>
|
|
|
|
<div class="inline field">
|
|
|
|
<button class="ui green button">{{$.i18n.Tr "repo.settings.update_githook"}}</button>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</form>
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
2014-10-07 03:20:00 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
2015-12-08 04:00:52 +05:30
|
|
|
{{template "base/footer" .}}
|