2015-11-22 12:02:09 +05:30
|
|
|
{{template "base/head" .}}
|
2023-02-02 04:26:10 +05:30
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content organization teams">
|
2015-11-22 12:02:09 +05:30
|
|
|
{{template "org/header" .}}
|
2015-12-08 04:00:52 +05:30
|
|
|
<div class="ui container">
|
|
|
|
{{template "base/alert" .}}
|
|
|
|
<div class="ui grid">
|
2015-11-22 12:02:09 +05:30
|
|
|
{{template "org/team/sidebar" .}}
|
|
|
|
<div class="ui ten wide column">
|
2018-12-09 12:12:11 +05:30
|
|
|
{{template "org/team/navbar" .}}
|
2019-01-26 05:44:35 +05:30
|
|
|
{{if .IsOrganizationOwner}}
|
|
|
|
<div class="ui attached segment">
|
2022-09-14 16:54:39 +05:30
|
|
|
<form class="ui form ignore-dirty" id="add-member-form" action="{{$.OrgLink}}/teams/{{$.Team.LowerName | PathEscape}}/action/add" method="post">
|
2019-01-26 05:44:35 +05:30
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<input type="hidden" name="uid" value="{{.SignedUser.ID}}">
|
|
|
|
<div class="inline field ui left">
|
2022-10-19 18:10:28 +05:30
|
|
|
<div id="search-user-box" class="ui search"{{if .IsEmailInviteEnabled}} data-allow-email="true" data-allow-email-description="{{.locale.Tr "org.teams.invite_team_member" $.Team.Name}}"{{end}}>
|
2019-01-26 05:44:35 +05:30
|
|
|
<div class="ui input">
|
2022-06-28 02:28:46 +05:30
|
|
|
<input class="prompt" name="uname" placeholder="{{.locale.Tr "repo.settings.search_user_placeholder"}}" autocomplete="off" required>
|
2019-01-26 05:44:35 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-06-28 02:28:46 +05:30
|
|
|
<button class="ui green button">{{.locale.Tr "org.teams.add_team_member"}}</button>
|
2019-01-26 05:44:35 +05:30
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
<div class="ui bottom attached table segment members">
|
2015-12-08 04:00:52 +05:30
|
|
|
{{range .Team.Members}}
|
2023-04-04 10:19:09 +05:30
|
|
|
<div class="item gt-df gt-ac gt-fw">
|
|
|
|
<a href="{{.HomeLink}}">{{avatar $.Context . 48 "gt-mr-3 gt-mb-0"}}</a>
|
|
|
|
<a class="gt-f1" href="{{.HomeLink}}">
|
|
|
|
<strong>{{.DisplayName}}</strong>
|
|
|
|
</a>
|
2022-02-26 02:49:54 +05:30
|
|
|
{{if and $.IsOrganizationOwner (not (and ($.Team.IsOwnerTeam) (eq (len $.Team.Members) 1)))}}
|
2021-08-27 08:27:40 +05:30
|
|
|
<form>
|
2023-04-04 10:19:09 +05:30
|
|
|
<button class="ui red button delete-button" data-modal-id="remove-team-member"
|
2021-11-16 23:48:25 +05:30
|
|
|
data-url="{{$.OrgLink}}/teams/{{$.Team.LowerName | PathEscape}}/action/remove" data-datauid="{{.ID}}"
|
2021-08-27 08:27:40 +05:30
|
|
|
data-name="{{.DisplayName}}"
|
2022-06-28 02:28:46 +05:30
|
|
|
data-data-team-name="{{$.Team.Name}}">{{$.locale.Tr "org.members.remove"}}</button>
|
2020-02-26 01:58:47 +05:30
|
|
|
</form>
|
2015-12-08 04:00:52 +05:30
|
|
|
{{end}}
|
|
|
|
</div>
|
2018-12-09 12:12:11 +05:30
|
|
|
{{else}}
|
|
|
|
<div class="item">
|
2022-06-28 02:28:46 +05:30
|
|
|
<span class="text grey italic">{{$.locale.Tr "org.teams.members.none"}}</span>
|
2018-12-09 12:12:11 +05:30
|
|
|
</div>
|
2015-12-08 04:00:52 +05:30
|
|
|
{{end}}
|
2014-08-23 17:54:02 +05:30
|
|
|
</div>
|
2022-10-19 18:10:28 +05:30
|
|
|
{{if and .Invites $.IsOrganizationOwner}}
|
|
|
|
<h4 class="ui top attached header">{{$.locale.Tr "org.teams.invite_team_member.list"}}</h4>
|
|
|
|
<div class="ui bottom attached table segment members">
|
|
|
|
{{range .Invites}}
|
|
|
|
<div class="item">
|
|
|
|
<form action="{{$.OrgLink}}/teams/{{$.Team.LowerName | PathEscape}}/action/remove_invite" method="post">
|
|
|
|
{{$.CsrfTokenHtml}}
|
2023-03-27 21:35:51 +05:30
|
|
|
<input type="hidden" name="iid" value="{{.ID}}">
|
2022-10-19 18:10:28 +05:30
|
|
|
<button class="ui red button right">{{$.locale.Tr "org.members.remove"}}</button>
|
|
|
|
</form>
|
|
|
|
{{.Email}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2014-08-23 17:54:02 +05:30
|
|
|
</div>
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
2014-08-23 17:54:02 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
2023-04-23 14:54:19 +05:30
|
|
|
<div class="ui gitea-confirm-modal delete modal" id="remove-team-member">
|
|
|
|
<div class="header">
|
2022-06-28 02:28:46 +05:30
|
|
|
{{$.locale.Tr "org.members.remove"}}
|
2021-08-27 08:27:40 +05:30
|
|
|
</div>
|
|
|
|
<div class="content">
|
2022-06-28 02:28:46 +05:30
|
|
|
<p>{{$.locale.Tr "org.members.remove.detail" `<span class="name"></span>` `<span class="dataTeamName"></span>` | Safe}}</p>
|
2021-08-27 08:27:40 +05:30
|
|
|
</div>
|
2023-04-23 14:54:19 +05:30
|
|
|
{{template "base/modal_actions_confirm" .}}
|
2021-08-27 08:27:40 +05:30
|
|
|
</div>
|
2015-12-08 04:00:52 +05:30
|
|
|
{{template "base/footer" .}}
|