mirror of
https://github.com/go-gitea/gitea
synced 2024-11-02 08:14:25 +00:00
44e0cfa96e
Co-Author: @wxiaoguang This is the first step of #24229. And this PR will only includes html changes, and followed by other PRs that fine tune css and change to submenus. After: Admin Level <img width="1400" alt="Screen Shot 2023-04-21 at 10 07 16" src="https://user-images.githubusercontent.com/17645053/233523870-f848b61d-056a-4b41-9760-a9a49fea1fe8.png"> User Level <img width="1422" alt="Screen Shot 2023-04-21 at 10 07 23" src="https://user-images.githubusercontent.com/17645053/233523878-979adb20-a657-43d9-99a6-ad414010c0ef.png"> Repo Level <img width="1404" alt="Screen Shot 2023-04-21 at 10 07 07" src="https://user-images.githubusercontent.com/17645053/233523863-337440bd-c03a-4dfd-87fa-cef40300bfe0.png"> --------- Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
106 lines
3.8 KiB
Handlebars
106 lines
3.8 KiB
Handlebars
{{template "repo/settings/layout_head" (dict "ctxData" . "pageClass" "repository settings edit")}}
|
|
<div class="repo-setting-content">
|
|
{{if .Repository.IsArchived}}
|
|
<div class="ui warning message">
|
|
{{.locale.Tr "repo.settings.archive.branchsettings_unavailable"}}
|
|
</div>
|
|
{{else}}
|
|
<h4 class="ui top attached header">
|
|
{{.locale.Tr "repo.default_branch"}}
|
|
</h4>
|
|
<div class="ui attached segment">
|
|
<p>
|
|
{{.locale.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">
|
|
{{range .Branches}}
|
|
<div class="item" data-value="{{.}}">{{.}}</div>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
<button class="ui green button">{{$.locale.Tr "repo.settings.branches.update_default_branch"}}</button>
|
|
</div>
|
|
{{end}}
|
|
</form>
|
|
</div>
|
|
|
|
<h4 class="ui top attached header">
|
|
{{.locale.Tr "repo.settings.protected_branch"}}
|
|
<div class="ui right">
|
|
<a class="ui primary tiny button" href="{{$.Repository.Link}}/settings/branches/edit">{{$.locale.Tr "repo.settings.branches.add_new_rule"}}</a>
|
|
</div>
|
|
</h4>
|
|
|
|
<div class="ui attached table segment">
|
|
<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 primary label">{{.RuleName}}</div></td>
|
|
<td class="right aligned">
|
|
<a class="rm ui button" href="{{$.Repository.Link}}/settings/branches/edit?rule_name={{.RuleName}}">{{$.locale.Tr "repo.settings.edit_protected_branch"}}</a>
|
|
<button class="ui red tiny button delete-button" data-url="{{$.Repository.Link}}/settings/branches/{{.ID}}/delete" data-id="{{.ID}}">
|
|
{{$.locale.Tr "repo.settings.protected_branch.delete_rule"}}</button>
|
|
</td>
|
|
</tr>
|
|
{{else}}
|
|
<tr class="center aligned"><td>{{.locale.Tr "repo.settings.no_protected_branch"}}</td></tr>
|
|
{{end}}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{{if $.Repository.CanCreateBranch}}
|
|
<h4 class="ui top attached header">
|
|
{{.locale.Tr "repo.settings.rename_branch"}}
|
|
</h4>
|
|
<div class="ui attached segment">
|
|
<form class="ui form" action="{{$.Repository.Link}}/settings/rename_branch" method="post">
|
|
{{.CsrfTokenHtml}}
|
|
<div class="required field">
|
|
<label for="from">{{.locale.Tr "repo.settings.rename_branch_from"}}</label>
|
|
<input id="from" name="from" required>
|
|
</div>
|
|
<div class="required field {{if .Err_BranchName}}error{{end}}">
|
|
<label for="to">{{.locale.Tr "repo.settings.rename_branch_to"}}</label>
|
|
<input id="to" name="to" required>
|
|
</div>
|
|
<div class="field">
|
|
<button class="ui green button">{{$.locale.Tr "repo.settings.update_settings"}}</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
{{end}}
|
|
{{end}}
|
|
</div>
|
|
|
|
<div class="ui gitea-confirm-modal delete modal">
|
|
<div class="header">
|
|
{{svg "octicon-trash"}}
|
|
{{.locale.Tr "repo.settings.protected_branch_deletion"}}
|
|
</div>
|
|
<div class="content">
|
|
<p>{{.locale.Tr "repo.settings.protected_branch_deletion_desc"}}</p>
|
|
</div>
|
|
{{template "base/modal_actions_confirm" .}}
|
|
</div>
|
|
|
|
{{template "repo/settings/layout_footer" .}}
|