aboutsummaryrefslogtreecommitdiffstats
path: root/templates/repo/settings/branches.tmpl
blob: 89d7c6db77a31b86e6d95f30f02d16af887e964e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{{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.branches.update_default_branch"}}</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>

			{{if $.Repository.CanCreateBranch}}
				<h4 class="ui top attached header">
					{{.i18n.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">{{.i18n.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">{{.i18n.Tr "repo.settings.rename_branch_to"}}</label>
							<input id="to" name="to" required>
						</div>
						<div class="field">
							<button class="ui green button">{{$.i18n.Tr "repo.settings.update_settings"}}</button>
						</div>
					</form>
				</div>
			{{end}}
		{{end}}
	</div>
</div>
{{template "base/footer" .}}