mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 15:54:25 +00:00
b1cf7f4df1
* Add class to page content to unify top margin Previously pages would individually set this margin but some didn't so content would stick to the header without any space. Resolve this by adding a new class that is added on all pages. The only place where we remove this margin again is on the pages with menu or wrapper in the header. * fix admin notices * fix team pages * fix loading segment on gitgraph for arc-green * fix last missing case Co-authored-by: techknowlogick <techknowlogick@gitea.io>
33 lines
1.1 KiB
Handlebars
33 lines
1.1 KiB
Handlebars
{{template "base/head" .}}
|
|
<div class="page-content repository settings edit githook">
|
|
{{template "repo/header" .}}
|
|
{{template "repo/settings/navbar" .}}
|
|
<div class="ui container">
|
|
{{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>
|
|
<span class="hook-filename">{{.Name}}</span>
|
|
</div>
|
|
<div class="field">
|
|
<label for="content">{{$.i18n.Tr "repo.settings.githook_content"}}</label>
|
|
<textarea id="content" name="content" class="hide">{{if .IsActive}}{{.Content}}{{else}}{{.Sample}}{{end}}</textarea>
|
|
<div class="editor-loading is-loading"></div>
|
|
</div>
|
|
<div class="inline field">
|
|
<button class="ui green button">{{$.i18n.Tr "repo.settings.update_githook"}}</button>
|
|
</div>
|
|
{{end}}
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{template "base/footer" .}}
|