2015-09-06 16:08:14 +02:00
|
|
|
{{template "base/head" .}}
|
2023-02-01 23:56:10 +01:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content organization new org">
|
2015-12-07 23:30:52 +01:00
|
|
|
<div class="ui middle very relaxed page grid">
|
|
|
|
<div class="column">
|
|
|
|
<form class="ui form" action="{{.Link}}" method="post">
|
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<h3 class="ui top attached header">
|
2024-08-07 18:54:05 +02:00
|
|
|
{{ctx.Locale.Tr "new_org.title"}}
|
2015-12-07 23:30:52 +01:00
|
|
|
</h3>
|
|
|
|
<div class="ui attached segment">
|
|
|
|
{{template "base/alert" .}}
|
|
|
|
<div class="inline required field {{if .Err_OrgName}}error{{end}}">
|
2023-09-25 10:56:50 +02:00
|
|
|
<label for="org_name">{{ctx.Locale.Tr "org.org_name_holder"}}</label>
|
2023-04-17 17:35:57 +02:00
|
|
|
<input id="org_name" name="org_name" value="{{.org_name}}" autofocus required maxlength="40">
|
2023-09-25 10:56:50 +02:00
|
|
|
<span class="help">{{ctx.Locale.Tr "org.org_name_helper"}}</span>
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
2015-09-06 16:08:14 +02:00
|
|
|
|
2019-03-28 19:36:17 +01:00
|
|
|
<div class="inline field {{if .Err_OrgVisibility}}error{{end}}">
|
2023-09-25 10:56:50 +02:00
|
|
|
<span class="inline required field"><label for="visibility">{{ctx.Locale.Tr "org.settings.visibility"}}</label></span>
|
2019-07-12 19:44:28 +02:00
|
|
|
<div class="inline-grouped-list">
|
|
|
|
<div class="ui radio checkbox">
|
2023-08-26 04:44:00 +02:00
|
|
|
<input class="enable-system-radio" name="visibility" type="radio" value="0" {{if .DefaultOrgVisibilityMode.IsPublic}}checked{{end}}>
|
2023-09-25 10:56:50 +02:00
|
|
|
<label>{{ctx.Locale.Tr "org.settings.visibility.public"}}</label>
|
2019-07-12 19:44:28 +02:00
|
|
|
</div>
|
|
|
|
<div class="ui radio checkbox">
|
2023-08-26 04:44:00 +02:00
|
|
|
<input class="enable-system-radio" name="visibility" type="radio" value="1" {{if .DefaultOrgVisibilityMode.IsLimited}}checked{{end}}>
|
2023-09-25 10:56:50 +02:00
|
|
|
<label>{{ctx.Locale.Tr "org.settings.visibility.limited"}}</label>
|
2019-07-12 19:44:28 +02:00
|
|
|
</div>
|
|
|
|
<div class="ui radio checkbox">
|
2023-08-26 04:44:00 +02:00
|
|
|
<input class="enable-system-radio" name="visibility" type="radio" value="2" {{if .DefaultOrgVisibilityMode.IsPrivate}}checked{{end}}>
|
2023-09-25 10:56:50 +02:00
|
|
|
<label>{{ctx.Locale.Tr "org.settings.visibility.private"}}</label>
|
2019-07-12 19:44:28 +02:00
|
|
|
</div>
|
2019-02-18 17:00:27 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-09-23 22:08:03 +02:00
|
|
|
|
2019-10-14 20:20:42 +02:00
|
|
|
<div class="inline field" id="permission_box">
|
2024-07-07 01:37:38 +02:00
|
|
|
<span class="inline field"><label>{{ctx.Locale.Tr "org.settings.permission"}}</label></span>
|
2019-10-14 20:20:42 +02:00
|
|
|
<div class="inline-grouped-list">
|
2019-09-23 22:08:03 +02:00
|
|
|
<div class="ui checkbox">
|
2023-03-27 18:05:51 +02:00
|
|
|
<input type="checkbox" name="repo_admin_change_team_access" checked>
|
2023-09-25 10:56:50 +02:00
|
|
|
<label>{{ctx.Locale.Tr "org.settings.repoadminchangeteam"}}</label>
|
2019-09-23 22:08:03 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2015-12-07 23:30:52 +01:00
|
|
|
<div class="inline field">
|
|
|
|
<label></label>
|
2023-09-19 00:05:31 +02:00
|
|
|
<button class="ui primary button">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "org.create_org"}}
|
2015-12-07 23:30:52 +01:00
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-07-27 05:53:16 +02:00
|
|
|
</div>
|
2015-12-07 23:30:52 +01:00
|
|
|
{{template "base/footer" .}}
|