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