gitea

Development moved to Codeberg

  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 10
  11. 11
  12. 12
  13. 13
  14. 14
  15. 15
  16. 16
  17. 17
  18. 18
  19. 19
  20. 20
  21. 21
  22. 22
  23. 23
  24. 24
  25. 25
  26. 26
  27. 27
  28. 28
  29. 29
  30. 30
  31. 31
  32. 32
  33. 33
  34. 34
  35. 35
  36. 36
  37. 37
  38. 38
  39. 39
  40. 40
  41. 41
  42. 42
  43. 43
  44. 44
  45. 45
  46. 46
  47. 47
  48. 48
  49. 49
  50. 50
  51. 51
  52. 52
  53. 53
  54. 54
  55. 55
  56. 56
  57. 57
  58. 58
  59. 59
  60. 60
  61. 61
  62. 62
  63. 63
  64. 64
  65. 65
  66. 66
  67. 67
  68. 68
  69. 69
  70. 70
  71. 71
  72. 72
  73. 73
  74. 74
  75. 75
  76. 76
  77. 77
  78. 78
  79. 79
  80. 80
  81. 81
  82. 82
  83. 83
  84. 84
  85. 85
  86. 86
  87. 87
  88. 88
  89. 89
  90. 90
  91. 91
  92. 92
  93. 93
  94. 94
  95. 95
  96. 96
  97. 97
  98. 98
  99. 99
  100. 100
  101. 101
  102. 102
  103. 103
  104. 104
  105. 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/{{. | PathEscapeSegments}}">{{.}}</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 primary label">{{.BranchName}}</div></td>
										<td class="right aligned"><a class="rm ui button" href="{{$.Repository.Link}}/settings/branches/{{.BranchName | PathEscapeSegments}}">{{$.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" .}}