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
  106. 106
{{template "base/head" .}}
<div role="main" aria-label="{{.Title}}" class="page-content organization settings options">
	{{template "org/header" .}}
	<div class="ui container">
		<div class="ui grid">
			{{template "org/settings/navbar" .}}
			<div class="twelve wide column content">
				{{template "base/alert" .}}
				<h4 class="ui top attached header">
					{{.locale.Tr "org.settings.options"}}
				</h4>
				<div class="ui attached segment">
					<form class="ui form" action="{{.Link}}" method="post">
						{{.CsrfTokenHtml}}
						<div class="required field {{if .Err_Name}}error{{end}}">
							<label for="org_name">{{.locale.Tr "org.org_name_holder"}}
								<span class="text red gt-hidden" id="org-name-change-prompt"> {{.locale.Tr "org.settings.change_orgname_prompt"}}</span>
								<span class="text red gt-hidden" id="org-name-change-redirect-prompt"> {{.locale.Tr "org.settings.change_orgname_redirect_prompt"}}</span>
							</label>
							<input id="org_name" name="name" value="{{.Org.Name}}" data-org-name="{{.Org.Name}}" autofocus required>
						</div>
						<div class="field {{if .Err_FullName}}error{{end}}">
							<label for="full_name">{{.locale.Tr "org.org_full_name_holder"}}</label>
							<input id="full_name" name="full_name" value="{{.Org.FullName}}">
						</div>
						<div class="field {{if .Err_Description}}error{{end}}">
							<label for="description">{{$.locale.Tr "org.org_desc"}}</label>
							<textarea id="description" name="description" rows="2">{{.Org.Description}}</textarea>
						</div>
						<div class="field {{if .Err_Website}}error{{end}}">
							<label for="website">{{.locale.Tr "org.settings.website"}}</label>
							<input id="website" name="website" type="url" value="{{.Org.Website}}">
						</div>
						<div class="field">
							<label for="location">{{.locale.Tr "org.settings.location"}}</label>
							<input id="location" name="location"  value="{{.Org.Location}}">
						</div>

						<div class="ui divider"></div>
						<div class="field" id="visibility_box">
							<label for="visibility">{{.locale.Tr "org.settings.visibility"}}</label>
							<div class="field">
								<div class="ui radio checkbox">
									<input class="enable-system-radio" tabindex="0" name="visibility" type="radio" value="0" {{if eq .CurrentVisibility 0}}checked{{end}}/>
									<label>{{.locale.Tr "org.settings.visibility.public"}}</label>
								</div>
							</div>
							<div class="field">
								<div class="ui radio checkbox">
									<input class="enable-system-radio" tabindex="0" name="visibility" type="radio" value="1" {{if eq .CurrentVisibility 1}}checked{{end}}/>
									<label>{{.locale.Tr "org.settings.visibility.limited"}}</label>
								</div>
							</div>
							<div class="field">
								<div class="ui radio checkbox">
									<input class="enable-system-radio" tabindex="0" name="visibility" type="radio" value="2" {{if eq .CurrentVisibility 2}}checked{{end}}/>
									<label>{{.locale.Tr "org.settings.visibility.private"}}</label>
								</div>
							</div>
						</div>

						<div class="field" id="permission_box">
							<label>{{.locale.Tr "org.settings.permission"}}</label>
							<div class="field">
								<div class="ui checkbox">
									<input type="checkbox" name="repo_admin_change_team_access" {{if .RepoAdminChangeTeamAccess}}checked{{end}}/>
									<label>{{.locale.Tr "org.settings.repoadminchangeteam"}}</label>
								</div>
							</div>
						</div>

						{{if .SignedUser.IsAdmin}}
						<div class="ui divider"></div>

						<div class="inline field {{if .Err_MaxRepoCreation}}error{{end}}">
							<label for="max_repo_creation">{{.locale.Tr "admin.users.max_repo_creation"}}</label>
							<input id="max_repo_creation" name="max_repo_creation" type="number" value="{{.Org.MaxRepoCreation}}">
							<p class="help">{{.locale.Tr "admin.users.max_repo_creation_desc"}}</p>
						</div>
						{{end}}

						<div class="field">
							<button class="ui green button">{{$.locale.Tr "org.settings.update_settings"}}</button>
						</div>
					</form>

					<div class="ui divider"></div>

					<form class="ui form" action="{{.Link}}/avatar" method="post" enctype="multipart/form-data">
						{{.CsrfTokenHtml}}
						<div class="inline field">
							<label for="avatar">{{.locale.Tr "settings.choose_new_avatar"}}</label>
							<input name="avatar" type="file" >
						</div>

						<div class="field">
							<button class="ui green button">{{$.locale.Tr "settings.update_avatar"}}</button>
							<a class="ui red button delete-post" data-request-url="{{.Link}}/avatar/delete" data-done-url="{{.Link}}">{{$.locale.Tr "settings.delete_current_avatar"}}</a>
						</div>
					</form>
				</div>
			</div>
		</div>
	</div>
</div>
{{template "base/footer" .}}