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>
|
2023-04-29 06:44:52 -04:00
|
|
|
<form class="gt-df" action="{{.Link}}" method="post">
|
2021-04-10 23:46:37 -04:00
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<input type="hidden" name="action" value="default_branch">
|
|
|
|
{{if not .Repository.IsEmpty}}
|
2023-04-29 06:44:52 -04:00
|
|
|
<div class="ui dropdown selection gt-f1 gt-mr-3 gt-max-width-24rem">
|
|
|
|
{{svg "octicon-triangle-down" 14 "dropdown icon"}}
|
|
|
|
<input type="hidden" name="branch" value="{{.Repository.DefaultBranch}}">
|
2021-04-10 23:46:37 -04:00
|
|
|
<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
|
|
|
{{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>
|
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" .}}
|