mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 07:44: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>
84 lines
3.4 KiB
Handlebars
84 lines
3.4 KiB
Handlebars
{{template "base/head" .}}
|
|
<div class="page-content repository settings edit">
|
|
{{template "repo/header" .}}
|
|
{{template "repo/settings/navbar" .}}
|
|
<div class="ui container">
|
|
{{template "base/alert" .}}
|
|
{{if .Repository.IsArchived}}
|
|
<div class="ui warning message">
|
|
{{.i18n.Tr "repo.settings.archive.branchsettings_unavailable"}}
|
|
</div>
|
|
{{else}}
|
|
<h4 class="ui top attached header">
|
|
{{.i18n.Tr "repo.default_branch"}}
|
|
</h4>
|
|
<div class="ui attached segment">
|
|
<p>
|
|
{{.i18n.Tr "repo.settings.default_branch_desc"}}
|
|
</p>
|
|
<form class="ui form" action="{{.Link}}" method="post">
|
|
{{.CsrfTokenHtml}}
|
|
<input type="hidden" name="action" value="default_branch">
|
|
{{if not .Repository.IsEmpty}}
|
|
<div class="required inline field">
|
|
<div class="ui dropdown selection" tabindex="0">
|
|
<select name="branch">
|
|
<option value="{{.Repository.DefaultBranch}}">{{.Repository.DefaultBranch}}</option>
|
|
{{range .Branches}}
|
|
<option value="{{.}}">{{.}}</option>
|
|
{{end}}
|
|
</select>{{svg "octicon-triangle-down" 14 "dropdown icon"}}
|
|
<div class="default text">{{.Repository.DefaultBranch}}</div>
|
|
<div class="menu transition hidden" tabindex="-1" style="display: block !important;">
|
|
{{range .Branches}}
|
|
<div class="item" data-value="{{.}}">{{.}}</div>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
<button class="ui green button">{{$.i18n.Tr "repo.settings.update_settings"}}</button>
|
|
</div>
|
|
{{end}}
|
|
</form>
|
|
</div>
|
|
|
|
<h4 class="ui top attached header">
|
|
{{.i18n.Tr "repo.settings.protected_branch"}}
|
|
</h4>
|
|
|
|
<div class="ui attached table segment">
|
|
<div class="ui grid padded">
|
|
<div class="eight wide column">
|
|
<div class="ui fluid dropdown selection" tabindex="0">
|
|
{{svg "octicon-triangle-down" 14 "dropdown icon"}}
|
|
<div class="default text">{{.i18n.Tr "repo.settings.choose_branch"}}</div>
|
|
<div class="menu transition hidden" tabindex="-1" style="display: block !important;">
|
|
{{range .LeftBranches}}
|
|
<a class="item" href="{{$.Repository.Link}}/settings/branches/{{. | EscapePound}}">{{.}}</a>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="ui grid padded">
|
|
<div class="sixteen wide column">
|
|
<table class="ui single line table padded">
|
|
<tbody>
|
|
{{range .ProtectedBranches}}
|
|
<tr>
|
|
<td><div class="ui basic label blue">{{.BranchName}}</div></td>
|
|
<td class="right aligned"><a class="rm ui button" href="{{$.Repository.Link}}/settings/branches/{{.BranchName | EscapePound}}">{{$.i18n.Tr "repo.settings.edit_protected_branch"}}</a></td>
|
|
</tr>
|
|
{{else}}
|
|
<tr class="center aligned"><td>{{.i18n.Tr "repo.settings.no_protected_branch"}}</td></tr>
|
|
{{end}}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
{{template "base/footer" .}}
|