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