2015-11-22 06:32:09 +00:00
{{ template "base/head" . }}
2023-02-01 22:56:10 +00:00
< div role = "main" aria-label = " {{ .Title }} " class = "page-content organization new team" >
2015-12-07 22:30:52 +00:00
{{ template "org/header" . }}
2021-11-25 13:05:04 +00:00
< div class = "ui container" >
< div class = "ui grid" >
< div class = "column" >
< form class = "ui form" action = " {{ if .PageIsOrgTeamsNew }}{{ .OrgLink }} /teams/new {{ else }}{{ .OrgLink }} /teams/ {{ .Team.LowerName | PathEscape }} /edit {{ end }} " data-delete-url = " {{ .OrgLink }} /teams/ {{ .Team.LowerName | PathEscape }} /delete" method = "post" >
{{ .CsrfTokenHtml }}
< h3 class = "ui top attached header" >
2023-09-25 12:42:40 +00:00
{{ if .PageIsOrgTeamsNew }}{{ ctx .Locale.Tr "org.create_new_team" }}{{ else }}{{ ctx .Locale.Tr "org.teams.settings" }}{{ end }}
2021-11-25 13:05:04 +00:00
< / h3 >
< div class = "ui attached segment" >
{{ template "base/alert" . }}
< div class = "required field {{ if .Err_TeamName }} error {{ end }} " >
2023-09-25 08:56:50 +00:00
< label for = "team_name" > {{ ctx .Locale.Tr "org.team_name" }} </ label >
2021-11-25 13:05:04 +00:00
{{ if eq .Team.LowerName "owners" }}
< input type = "hidden" name = "team_name" value = " {{ .Team.Name }} " >
{{ end }}
< input id = "team_name" name = "team_name" value = " {{ .Team.Name }} " required {{ if eq .Team.LowerName "owners" }} disabled {{ end }} autofocus >
2023-09-25 08:56:50 +00:00
< span class = "help" > {{ ctx .Locale.Tr "org.team_name_helper" }} </ span >
2021-11-25 13:05:04 +00:00
< / div >
< div class = "field {{ if .Err_Description }} error {{ end }} " >
2023-09-25 08:56:50 +00:00
< label for = "description" > {{ ctx .Locale.Tr "org.team_desc" }} </ label >
2021-11-25 13:05:04 +00:00
< input id = "description" name = "description" value = " {{ .Team.Description }} " >
2023-09-25 08:56:50 +00:00
< span class = "help" > {{ ctx .Locale.Tr "org.team_desc_helper" }} </ span >
2021-11-25 13:05:04 +00:00
< / div >
{{ if not ( eq .Team.LowerName "owners" ) }}
2024-08-17 18:24:31 +00:00
< fieldset >
< legend > {{ ctx .Locale.Tr "org.team_access_desc" }} </ legend >
< label >
< input type = "radio" name = "repo_access" value = "specific" {{ if not .Team.IncludesAllRepositories }} checked {{ end }} >
{{ ctx .Locale.Tr "org.teams.specific_repositories" }}
< span class = "help" > {{ ctx .Locale.Tr "org.teams.specific_repositories_helper" }} </ span >
< / label >
< label >
< input type = "radio" name = "repo_access" value = "all" {{ if .Team.IncludesAllRepositories }} checked {{ end }} >
{{ ctx .Locale.Tr "org.teams.all_repositories" }}
< span class = "help" > {{ ctx .Locale.Tr "org.teams.all_repositories_helper" }} </ span >
< / label >
2019-11-20 11:27:49 +00:00
2024-08-17 18:24:31 +00:00
< label >
< input name = "can_create_org_repo" type = "checkbox" {{ if .Team.CanCreateOrgRepo }} checked {{ end }} >
{{ ctx .Locale.Tr "org.teams.can_create_org_repo" }}
< span class = "help" > {{ ctx .Locale.Tr "org.teams.can_create_org_repo_helper" }} </ span >
< / label >
< / fieldset >
< fieldset >
< legend > {{ ctx .Locale.Tr "org.team_permission_desc" }} </ legend >
< label >
< input type = "radio" name = "permission" value = "admin" {{ if eq .Team.AccessMode 3 }} checked {{ end }} >
{{ ctx .Locale.Tr "org.teams.admin_access" }}
< span class = "help" > {{ ctx .Locale.Tr "org.teams.admin_access_helper" }} </ span >
< / label >
< label >
< input type = "radio" name = "permission" value = "read" {{ if or .PageIsOrgTeamsNew ( eq .Team.AccessMode 1 ) ( eq .Team.AccessMode 2 ) }} checked {{ end }} >
{{ ctx .Locale.Tr "org.teams.general_access" }}
< span class = "help" > {{ ctx .Locale.Tr "org.teams.general_access_helper" }} </ span >
< / label >
2024-08-19 21:35:37 +00:00
< fieldset class = "hide-unless-checked" >
< legend > {{ ctx .Locale.Tr "org.team_unit_desc" }}
< span class = "help" > {{ ctx .Locale.Tr "org.teams.none_access_helper" }} </ span >
< / legend >
< table class = "ui table optionmatrix" >
< thead >
< tr >
< th > {{ ctx .Locale.Tr "units.unit" }} </ th >
< th id = "access_none" > {{ ctx .Locale.Tr "org.teams.none_access" }} </ th >
2024-09-22 19:21:54 +00:00
< th > {{ ctx .Locale.Tr "org.teams.read_access" }} </ th >
< th > {{ ctx .Locale.Tr "org.teams.write_access" }} </ th >
2024-08-19 21:35:37 +00:00
< / tr >
< / thead >
< tbody >
{{ range $t , $unit := $.Units }}
{{ if ge $unit .MaxPerm 2 }}
< tr >
< td >
< label {{ if $unit .Type.UnitGlobalDisabled }} data-tooltip-content = " {{ ctx .Locale.Tr "repo.unit_disabled" }} " {{ end }} >
2024-09-22 19:21:54 +00:00
< span id = "help_ {{ $unit .Type.Value }} _name" > {{ ctx .Locale.Tr $unit .NameKey }}{{ if $unit .Type.UnitGlobalDisabled }} {{ ctx .Locale.Tr "org.team_unit_disabled" }}{{ end }} </ span >
< span class = "help" id = "help_ {{ $unit .Type.Value }} _r" > {{ ctx .Locale.Tr ( print "repo.permissions." $unit .Name ".read" ) }} </ span >
< span class = "help" id = "help_ {{ $unit .Type.Value }} _w" > {{ ctx .Locale.Tr ( print "repo.permissions." $unit .Name ".write" ) }} </ span >
2024-08-19 21:35:37 +00:00
< / label >
< / td >
< td >
< label >
2024-09-22 19:21:54 +00:00
< input aria-labelledby = "help_ {{ $unit .Type.Value }} _name access_none" type = "radio" name = "unit_ {{ $unit .Type.Value }} " value = "0" {{ if or ( $unit .Type.UnitGlobalDisabled ) ( eq ( $.Team.UnitAccessMode $.Context $unit .Type ) 0 ) }} checked {{ end }} >
2024-08-19 21:35:37 +00:00
< span class = "only-mobile" > {{ ctx .Locale.Tr "org.teams.none_access" }} </ span >
< / label >
< / td >
< td >
< label >
2024-09-22 19:21:54 +00:00
< input aria-labelledby = "help_ {{ $unit .Type.Value }} _name help_ {{ $unit .Type.Value }} _r" type = "radio" name = "unit_ {{ $unit .Type.Value }} " value = "1" {{ if or ( eq $.Team.ID 0 ) ( eq ( $.Team.UnitAccessMode $.Context $unit .Type ) 1 ) }} checked {{ end }} {{ if $unit .Type.UnitGlobalDisabled }} disabled {{ end }} >
2024-08-19 21:35:37 +00:00
< span class = "only-mobile" > {{ ctx .Locale.Tr "org.teams.read_access" }} </ span >
< / label >
< / td >
< td >
< label >
2024-09-22 19:21:54 +00:00
< input aria-labelledby = "help_ {{ $unit .Type.Value }} _name help_ {{ $unit .Type.Value }} _w" type = "radio" name = "unit_ {{ $unit .Type.Value }} " value = "2" {{ if ( ge ( $.Team.UnitAccessMode $.Context $unit .Type ) 2 ) }} checked {{ end }} {{ if $unit .Type.UnitGlobalDisabled }} disabled {{ end }} >
2024-08-19 21:35:37 +00:00
< span class = "only-mobile" > {{ ctx .Locale.Tr "org.teams.write_access" }} </ span >
< / label >
< / td >
< / tr >
{{ end }}
2022-01-05 03:37:00 +00:00
{{ end }}
2024-08-19 21:35:37 +00:00
< / tbody >
< / table >
< fieldset >
{{ range $t , $unit := $.Units }}
{{ if lt $unit .MaxPerm 2 }}
< label {{ if $unit .Type.UnitGlobalDisabled }} data-tooltip-content = " {{ ctx .Locale.Tr "repo.unit_disabled" }} " {{ end }} >
< input type = "checkbox" name = "unit_ {{ $unit .Type.Value }} " value = "1" {{ if or ( eq $.Team.ID 0 ) ( eq ( $.Team.UnitAccessMode $.Context $unit .Type ) 1 ) }} checked {{ end }} {{ if $unit .Type.UnitGlobalDisabled }} disabled {{ end }} >
{{ ctx .Locale.Tr $unit .NameKey }}{{ if $unit .Type.UnitGlobalDisabled }} {{ ctx .Locale.Tr "org.team_unit_disabled" }}{{ end }}
2024-09-22 19:21:54 +00:00
< span class = "help" > {{ ctx .Locale.Tr ( print "repo.permissions." $unit .Name ) }} </ span >
2024-08-19 21:35:37 +00:00
< / label >
2022-01-05 03:37:00 +00:00
{{ end }}
{{ end }}
2024-08-19 21:35:37 +00:00
< / fieldset >
2024-08-17 18:24:31 +00:00
< / fieldset >
2024-08-19 21:35:37 +00:00
< / fieldset >
2021-11-25 13:05:04 +00:00
{{ end }}
2017-05-18 14:54:24 +00:00
2021-11-25 13:05:04 +00:00
< div class = "field" >
{{ if .PageIsOrgTeamsNew }}
2023-09-25 08:56:50 +00:00
< button class = "ui primary button" > {{ ctx .Locale.Tr "org.create_team" }} </ button >
2021-11-25 13:05:04 +00:00
{{ else }}
2023-09-25 08:56:50 +00:00
< button class = "ui primary button" > {{ ctx .Locale.Tr "org.teams.update_settings" }} </ button >
2021-11-25 13:05:04 +00:00
{{ if not ( eq .Team.LowerName "owners" ) }}
2023-09-25 08:56:50 +00:00
< button class = "ui red button delete-button" data-url = " {{ .OrgLink }} /teams/ {{ .Team.Name | PathEscape }} /delete" > {{ ctx .Locale.Tr "org.teams.delete_team" }} </ button >
2021-11-25 13:05:04 +00:00
{{ end }}
2015-12-07 22:30:52 +00:00
{{ end }}
2021-11-25 13:05:04 +00:00
< / div >
2015-12-07 22:30:52 +00:00
< / div >
2021-11-25 13:05:04 +00:00
< / form >
< / div >
2015-12-07 22:30:52 +00:00
< / div >
< / div >
2015-11-22 06:32:09 +00:00
< / div >
2023-04-24 11:08:59 +00:00
< div class = "ui g-modal-confirm delete modal" >
2023-04-23 09:24:19 +00:00
< div class = "header" >
2021-03-22 04:04:19 +00:00
{{ svg "octicon-trash" }}
2023-09-25 08:56:50 +00:00
{{ ctx .Locale.Tr "org.teams.delete_team_title" }}
2015-12-07 22:30:52 +00:00
< / div >
< div class = "content" >
2023-09-25 08:56:50 +00:00
< p > {{ ctx .Locale.Tr "org.teams.delete_team_desc" }} </ p >
2015-12-07 22:30:52 +00:00
< / div >
2023-04-23 09:24:19 +00:00
{{ template "base/modal_actions_confirm" . }}
2014-08-16 08:21:17 +00:00
< / div >
2015-12-07 22:30:52 +00:00
{{ template "base/footer" . }}