2023-04-23 06:21:21 -04:00
|
|
|
{{template "repo/settings/layout_head" (dict "ctxData" . "pageClass" "repository settings edit")}}
|
|
|
|
<div class="repo-setting-content">
|
2019-01-23 13:58:38 -05:00
|
|
|
{{if .Repository.IsArchived}}
|
|
|
|
<div class="ui warning message">
|
2022-06-27 16:58:46 -04:00
|
|
|
{{.locale.Tr "repo.settings.archive.branchsettings_unavailable"}}
|
2019-01-23 13:58:38 -05:00
|
|
|
</div>
|
|
|
|
{{else}}
|
2021-04-10 23:46:37 -04:00
|
|
|
<h4 class="ui top attached header">
|
2022-06-27 16:58:46 -04:00
|
|
|
{{.locale.Tr "repo.default_branch"}}
|
2021-04-10 23:46:37 -04:00
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
|
|
|
<p>
|
2022-06-27 16:58:46 -04:00
|
|
|
{{.locale.Tr "repo.settings.default_branch_desc"}}
|
2021-04-10 23:46:37 -04:00
|
|
|
</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>
|
2023-02-14 06:53:54 -05:00
|
|
|
<div class="menu">
|
2021-04-10 23:46:37 -04:00
|
|
|
{{range .Branches}}
|
|
|
|
<div class="item" data-value="{{.}}">{{.}}</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-06-27 16:58:46 -04:00
|
|
|
<button class="ui green button">{{$.locale.Tr "repo.settings.branches.update_default_branch"}}</button>
|
2021-04-10 23:46:37 -04:00
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</form>
|
|
|
|
</div>
|
2017-02-21 10:02:10 -05:00
|
|
|
|
2019-01-23 13:58:38 -05:00
|
|
|
<h4 class="ui top attached header">
|
2022-06-27 16:58:46 -04:00
|
|
|
{{.locale.Tr "repo.settings.protected_branch"}}
|
2023-01-16 03:00:22 -05:00
|
|
|
<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>
|
2019-01-23 13:58:38 -05:00
|
|
|
</h4>
|
2017-09-14 04:16:22 -04:00
|
|
|
|
2019-01-23 13:58:38 -05:00
|
|
|
<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>
|
2023-01-16 03:00:22 -05:00
|
|
|
<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>
|
2019-01-23 13:58:38 -05:00
|
|
|
</tr>
|
|
|
|
{{else}}
|
2022-06-27 16:58:46 -04:00
|
|
|
<tr class="center aligned"><td>{{.locale.Tr "repo.settings.no_protected_branch"}}</td></tr>
|
2019-01-23 13:58:38 -05:00
|
|
|
{{end}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2017-03-15 18:39:38 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-10-08 13:03:04 -04:00
|
|
|
|
|
|
|
{{if $.Repository.CanCreateBranch}}
|
|
|
|
<h4 class="ui top attached header">
|
2022-06-27 16:58:46 -04:00
|
|
|
{{.locale.Tr "repo.settings.rename_branch"}}
|
2021-10-08 13:03:04 -04:00
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
|
|
|
<form class="ui form" action="{{$.Repository.Link}}/settings/rename_branch" method="post">
|
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<div class="required field">
|
2022-06-27 16:58:46 -04:00
|
|
|
<label for="from">{{.locale.Tr "repo.settings.rename_branch_from"}}</label>
|
2021-10-08 13:03:04 -04:00
|
|
|
<input id="from" name="from" required>
|
|
|
|
</div>
|
|
|
|
<div class="required field {{if .Err_BranchName}}error{{end}}">
|
2022-06-27 16:58:46 -04:00
|
|
|
<label for="to">{{.locale.Tr "repo.settings.rename_branch_to"}}</label>
|
2021-10-08 13:03:04 -04:00
|
|
|
<input id="to" name="to" required>
|
|
|
|
</div>
|
|
|
|
<div class="field">
|
2022-06-27 16:58:46 -04:00
|
|
|
<button class="ui green button">{{$.locale.Tr "repo.settings.update_settings"}}</button>
|
2021-10-08 13:03:04 -04:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2019-01-23 13:58:38 -05:00
|
|
|
{{end}}
|
2017-02-21 10:02:10 -05:00
|
|
|
</div>
|
2023-01-16 03:00:22 -05:00
|
|
|
|
2023-04-24 07:08:59 -04:00
|
|
|
<div class="ui g-modal-confirm delete modal">
|
2023-04-23 05:24:19 -04:00
|
|
|
<div class="header">
|
|
|
|
{{svg "octicon-trash"}}
|
2023-01-16 03:00:22 -05:00
|
|
|
{{.locale.Tr "repo.settings.protected_branch_deletion"}}
|
|
|
|
</div>
|
|
|
|
<div class="content">
|
|
|
|
<p>{{.locale.Tr "repo.settings.protected_branch_deletion_desc"}}</p>
|
|
|
|
</div>
|
2023-04-23 05:24:19 -04:00
|
|
|
{{template "base/modal_actions_confirm" .}}
|
2023-01-16 03:00:22 -05:00
|
|
|
</div>
|
|
|
|
|
2023-04-23 06:21:21 -04:00
|
|
|
{{template "repo/settings/layout_footer" .}}
|