summaryrefslogtreecommitdiffstats
path: root/templates/org/team/new.tmpl
blob: 9608eac154ef31ce8df8084293ecb852b8c2e2d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{{template "base/head" .}}
<div role="main" aria-label="{{.Title}}" class="page-content organization new team">
	{{template "org/header" .}}
	<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">
						{{if .PageIsOrgTeamsNew}}{{ctx.Locale.Tr "org.create_new_team"}}{{else}}{{ctx.Locale.Tr "org.teams.settings"}}{{end}}
					</h3>
					<div class="ui attached segment">
						{{template "base/alert" .}}
						<div class="required field {{if .Err_TeamName}}error{{end}}">
							<label for="team_name">{{ctx.Locale.Tr "org.team_name"}}</label>
							{{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>
							<span class="help">{{ctx.Locale.Tr "org.team_name_helper"}}</span>
						</div>
						<div class="field {{if .Err_Description}}error{{end}}">
							<label for="description">{{ctx.Locale.Tr "org.team_desc"}}</label>
							<input id="description" name="description" value="{{.Team.Description}}">
							<span class="help">{{ctx.Locale.Tr "org.team_desc_helper"}}</span>
						</div>
						{{if not (eq .Team.LowerName "owners")}}
							<div class="grouped field">
								<label>{{ctx.Locale.Tr "org.team_access_desc"}}</label>
								<br>
								<div class="field">
									<div class="ui radio checkbox">
										<input type="radio" name="repo_access" value="specific" {{if not .Team.IncludesAllRepositories}}checked{{end}}>
										<label>{{ctx.Locale.Tr "org.teams.specific_repositories"}}</label>
										<span class="help">{{ctx.Locale.Tr "org.teams.specific_repositories_helper"}}</span>
									</div>
								</div>
								<div class="field">
									<div class="ui radio checkbox">
										<input type="radio" name="repo_access" value="all" {{if .Team.IncludesAllRepositories}}checked{{end}}>
										<label>{{ctx.Locale.Tr "org.teams.all_repositories"}}</label>
										<span class="help">{{ctx.Locale.Tr "org.teams.all_repositories_helper"}}</span>
									</div>
								</div>

								<div class="field">
									<div class="ui checkbox">
										<label for="can_create_org_repo">{{ctx.Locale.Tr "org.teams.can_create_org_repo"}}</label>
										<input id="can_create_org_repo" name="can_create_org_repo" type="checkbox" {{if .Team.CanCreateOrgRepo}}checked{{end}}>
										<span class="help">{{ctx.Locale.Tr "org.teams.can_create_org_repo_helper"}}</span>
									</div>
								</div>
							</div>
							<div class="grouped field">
								<label>{{ctx.Locale.Tr "org.team_permission_desc"}}</label>
								<br>
								<div class="field">
									<div class="ui radio checkbox">
										<input type="radio" name="permission" value="read" {{if or .PageIsOrgTeamsNew (eq .Team.AccessMode 1) (eq .Team.AccessMode 2)}}checked{{end}}>
										<label>{{ctx.Locale.Tr "org.teams.general_access"}}</label>
										<span class="help">{{ctx.Locale.Tr "org.teams.general_access_helper"}}</span>
									</div>
								</div>
								<div class="field">
									<div class="ui radio checkbox">
										<input type="radio" name="permission" value="admin" {{if eq .Team.AccessMode 3}}checked{{end}}>
										<label>{{ctx.Locale.Tr "org.teams.admin_access"}}</label>
										<span class="help">{{ctx.Locale.Tr "org.teams.admin_access_helper"}}</span>
									</div>
								</div>
							</div>
							<div class="divider"></div>

							<div class="team-units required grouped field {{if eq .Team.AccessMode 3}}tw-hidden{{end}}">
								<label>{{ctx.Locale.Tr "org.team_unit_desc"}}</label>
								<table class="ui celled table">
									<thead>
										<tr>
											<th>{{ctx.Locale.Tr "units.unit"}}</th>
											<th class="center aligned">{{ctx.Locale.Tr "org.teams.none_access"}}
											<span class="tw-align-middle" data-tooltip-content="{{ctx.Locale.Tr "org.teams.none_access_helper"}}">{{svg "octicon-question" 16 "tw-ml-1"}}</span></th>
											<th class="center aligned">{{ctx.Locale.Tr "org.teams.read_access"}}
											<span class="tw-align-middle" data-tooltip-content="{{ctx.Locale.Tr "org.teams.read_access_helper"}}">{{svg "octicon-question" 16 "tw-ml-1"}}</span></th>
											<th class="center aligned">{{ctx.Locale.Tr "org.teams.write_access"}}
											<span class="tw-align-middle" data-tooltip-content="{{ctx.Locale.Tr "org.teams.write_access_helper"}}">{{svg "octicon-question" 16 "tw-ml-1"}}</span></th>
										</tr>
									</thead>
									<tbody>
										{{range $t, $unit := $.Units}}
											{{if ge $unit.MaxPerm 2}}
												<tr>
													<td>
														<div {{if $unit.Type.UnitGlobalDisabled}}class="field" data-tooltip-content="{{ctx.Locale.Tr "repo.unit_disabled"}}"{{- else -}}class="field"{{end}}>
															<div>
																<label>{{ctx.Locale.Tr $unit.NameKey}}{{if $unit.Type.UnitGlobalDisabled}} {{ctx.Locale.Tr "org.team_unit_disabled"}}{{end}}</label>
																<span class="help">{{ctx.Locale.Tr $unit.DescKey}}</span>
															</div>
														</div>
													</td>
													<td class="center aligned">
														<div class="ui radio checkbox">
															<input type="radio" name="unit_{{$unit.Type.Value}}" value="0"{{if or ($unit.Type.UnitGlobalDisabled) (eq ($.Team.UnitAccessMode $.Context $unit.Type) 0)}} checked{{end}} title="{{ctx.Locale.Tr "org.teams.none_access"}}">
														</div>
													</td>
													<td class="center aligned">
														<div class="ui radio checkbox">
															<input 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}} title="{{ctx.Locale.Tr "org.teams.read_access"}}">
														</div>
													</td>
													<td class="center aligned">
														<div class="ui radio checkbox">
															<input 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}} title="{{ctx.Locale.Tr "org.teams.write_access"}}">
														</div>
													</td>
												</tr>
											{{end}}
										{{end}}
									</tbody>
								</table>
								{{range $t, $unit := $.Units}}
									{{if lt $unit.MaxPerm 2}}
										<div {{if $unit.Type.UnitGlobalDisabled}}class="field" data-tooltip-content="{{ctx.Locale.Tr "repo.unit_disabled"}}"{{else}}class="field"{{end}}>
											<div class="ui checkbox">
												<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}}>
												<label>{{ctx.Locale.Tr $unit.NameKey}}{{if $unit.Type.UnitGlobalDisabled}} {{ctx.Locale.Tr "org.team_unit_disabled"}}{{end}}</label>
												<span class="help">{{ctx.Locale.Tr $unit.DescKey}}</span>
											</div>
										</div>
									{{end}}
								{{end}}
							</div>
						{{end}}

						<div class="field">
							{{if .PageIsOrgTeamsNew}}
								<button class="ui primary button">{{ctx.Locale.Tr "org.create_team"}}</button>
							{{else}}
								<button class="ui primary button">{{ctx.Locale.Tr "org.teams.update_settings"}}</button>
								{{if not (eq .Team.LowerName "owners")}}
									<button class="ui red button delete-button" data-url="{{.OrgLink}}/teams/{{.Team.Name | PathEscape}}/delete">{{ctx.Locale.Tr "org.teams.delete_team"}}</button>
								{{end}}
							{{end}}
						</div>
					</div>
				</form>
			</div>
		</div>
	</div>
</div>

<div class="ui g-modal-confirm delete modal">
	<div class="header">
		{{svg "octicon-trash"}}
		{{ctx.Locale.Tr "org.teams.delete_team_title"}}
	</div>
	<div class="content">
		<p>{{ctx.Locale.Tr "org.teams.delete_team_desc"}}</p>
	</div>
	{{template "base/modal_actions_confirm" .}}
</div>
{{template "base/footer" .}}