2015-11-21 23:32:09 -07:00
|
|
|
{{template "base/head" .}}
|
2020-11-30 21:00:14 -07:00
|
|
|
<div class="page-content organization teams">
|
2015-11-21 23:32:09 -07:00
|
|
|
{{template "org/header" .}}
|
2015-12-07 15:30:52 -07:00
|
|
|
<div class="ui container">
|
|
|
|
{{template "base/alert" .}}
|
|
|
|
<div class="ui grid">
|
2015-11-21 23:32:09 -07:00
|
|
|
{{template "org/team/sidebar" .}}
|
|
|
|
<div class="ui ten wide column">
|
2018-12-08 23:42:11 -07:00
|
|
|
{{template "org/team/navbar" .}}
|
2019-01-25 17:14:35 -07:00
|
|
|
{{if .IsOrganizationOwner}}
|
|
|
|
<div class="ui attached segment">
|
2021-11-16 11:18:25 -07:00
|
|
|
<form class="ui form" id="add-member-form" action="{{$.OrgLink}}/teams/{{$.Team.LowerName | PathEscape}}/action/add" method="post">
|
2019-01-25 17:14:35 -07:00
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<input type="hidden" name="uid" value="{{.SignedUser.ID}}">
|
|
|
|
<div class="inline field ui left">
|
|
|
|
<div id="search-user-box" class="ui search">
|
|
|
|
<div class="ui input">
|
2022-06-27 14:58:46 -06:00
|
|
|
<input class="prompt" name="uname" placeholder="{{.locale.Tr "repo.settings.search_user_placeholder"}}" autocomplete="off" required>
|
2019-01-25 17:14:35 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-06-27 14:58:46 -06:00
|
|
|
<button class="ui green button">{{.locale.Tr "org.teams.add_team_member"}}</button>
|
2019-01-25 17:14:35 -07:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
<div class="ui bottom attached table segment members">
|
2015-12-07 15:30:52 -07:00
|
|
|
{{range .Team.Members}}
|
|
|
|
<div class="item">
|
2022-02-25 14:19:54 -07:00
|
|
|
{{if and $.IsOrganizationOwner (not (and ($.Team.IsOwnerTeam) (eq (len $.Team.Members) 1)))}}
|
2021-08-26 20:57:40 -06:00
|
|
|
<form>
|
|
|
|
<button class="ui red button delete-button right" data-modal-id="remove-team-member"
|
2021-11-16 11:18:25 -07:00
|
|
|
data-url="{{$.OrgLink}}/teams/{{$.Team.LowerName | PathEscape}}/action/remove" data-datauid="{{.ID}}"
|
2021-08-26 20:57:40 -06:00
|
|
|
data-name="{{.DisplayName}}"
|
2022-06-27 14:58:46 -06:00
|
|
|
data-data-team-name="{{$.Team.Name}}">{{$.locale.Tr "org.members.remove"}}</button>
|
2020-02-25 13:28:47 -07:00
|
|
|
</form>
|
2015-12-07 15:30:52 -07:00
|
|
|
{{end}}
|
|
|
|
<a href="{{.HomeLink}}">
|
2020-12-03 11:46:11 -07:00
|
|
|
{{avatar .}}
|
2017-04-05 19:31:31 -06:00
|
|
|
{{.DisplayName}}
|
2015-12-07 15:30:52 -07:00
|
|
|
</a>
|
|
|
|
</div>
|
2018-12-08 23:42:11 -07:00
|
|
|
{{else}}
|
|
|
|
<div class="item">
|
2022-06-27 14:58:46 -06:00
|
|
|
<span class="text grey italic">{{$.locale.Tr "org.teams.members.none"}}</span>
|
2018-12-08 23:42:11 -07:00
|
|
|
</div>
|
2015-12-07 15:30:52 -07:00
|
|
|
{{end}}
|
2014-08-23 06:24:02 -06:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-12-07 15:30:52 -07:00
|
|
|
</div>
|
2014-08-23 06:24:02 -06:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-08-26 20:57:40 -06:00
|
|
|
<div class="ui small basic delete modal" id="remove-team-member">
|
|
|
|
<div class="ui icon header">
|
|
|
|
{{svg "octicon-x" 16 "close inside"}}
|
2022-06-27 14:58:46 -06:00
|
|
|
{{$.locale.Tr "org.members.remove"}}
|
2021-08-26 20:57:40 -06:00
|
|
|
</div>
|
|
|
|
<div class="content">
|
2022-06-27 14:58:46 -06:00
|
|
|
<p>{{$.locale.Tr "org.members.remove.detail" `<span class="name"></span>` `<span class="dataTeamName"></span>` | Safe}}</p>
|
2021-08-26 20:57:40 -06:00
|
|
|
</div>
|
|
|
|
{{template "base/delete_modal_actions" .}}
|
|
|
|
</div>
|
2015-12-07 15:30:52 -07:00
|
|
|
{{template "base/footer" .}}
|