2015-08-26 10:03:30 +00:00
|
|
|
{{template "base/head" .}}
|
2020-12-01 04:00:14 +00:00
|
|
|
<div class="page-content repository settings edit githook">
|
2015-08-26 10:03:30 +00:00
|
|
|
{{template "repo/header" .}}
|
2017-03-15 22:39:38 +00:00
|
|
|
{{template "repo/settings/navbar" .}}
|
2015-08-26 10:03:30 +00:00
|
|
|
<div class="ui container">
|
2017-03-15 22:39:38 +00:00
|
|
|
{{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 03:57:34 +00:00
|
|
|
<span class="hook-filename">{{.Name}}</span>
|
2017-03-15 22:39:38 +00:00
|
|
|
</div>
|
|
|
|
<div class="field">
|
|
|
|
<label for="content">{{$.i18n.Tr "repo.settings.githook_content"}}</label>
|
2020-11-14 03:57:34 +00:00
|
|
|
<textarea id="content" name="content" class="hide">{{if .IsActive}}{{.Content}}{{else}}{{.Sample}}{{end}}</textarea>
|
|
|
|
<div class="editor-loading is-loading"></div>
|
2017-03-15 22:39:38 +00:00
|
|
|
</div>
|
|
|
|
<div class="inline field">
|
|
|
|
<button class="ui green button">{{$.i18n.Tr "repo.settings.update_githook"}}</button>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</form>
|
2015-12-07 22:30:52 +00:00
|
|
|
</div>
|
2014-10-06 21:50:00 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-12-07 22:30:52 +00:00
|
|
|
{{template "base/footer" .}}
|