2015-11-22 01:32:09 -05:00
|
|
|
{{template "base/head" .}}
|
2024-02-22 19:24:57 -05:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content organization members">
|
2015-11-22 01:32:09 -05:00
|
|
|
{{template "org/header" .}}
|
2015-12-07 17:30:52 -05:00
|
|
|
<div class="ui container">
|
|
|
|
{{template "base/alert" .}}
|
|
|
|
|
2023-07-31 18:13:42 -04:00
|
|
|
<div class="flex-list">
|
2022-08-31 11:58:54 -04:00
|
|
|
{{range .Members}}
|
2023-07-31 18:13:42 -04:00
|
|
|
{{$isPublic := index $.MembersIsPublicMember .ID}}
|
2023-09-08 09:57:18 -04:00
|
|
|
<div class="flex-item {{if $.PublicOnly}}gt-ac{{end}}">
|
2023-07-31 18:13:42 -04:00
|
|
|
<div class="flex-item-leading">
|
2023-08-09 23:19:39 -04:00
|
|
|
<a href="{{.HomeLink}}">{{ctx.AvatarUtils.Avatar . 48}}</a>
|
2015-11-22 01:32:09 -05:00
|
|
|
</div>
|
2023-07-31 18:13:42 -04:00
|
|
|
<div class="flex-item-main">
|
|
|
|
<div class="flex-item-title">
|
|
|
|
{{template "shared/user/name" .}}
|
|
|
|
{{if not $isPublic}}
|
2023-09-25 04:56:50 -04:00
|
|
|
<span class="ui basic tiny label">{{ctx.Locale.Tr "org.members.private"}}</span>
|
2015-12-07 17:30:52 -05:00
|
|
|
{{end}}
|
|
|
|
</div>
|
2023-07-31 18:13:42 -04:00
|
|
|
{{if not $.PublicOnly}}
|
|
|
|
<div class="flex-item-body">
|
2023-09-25 04:56:50 -04:00
|
|
|
{{ctx.Locale.Tr "org.members.member_role"}}
|
|
|
|
<strong class="flex-text-inline">{{if index $.MembersIsUserOrgOwner .ID}}{{svg "octicon-shield-lock"}} {{ctx.Locale.Tr "org.members.owner"}}{{else}}{{ctx.Locale.Tr "org.members.member"}}{{end}}</strong>
|
2022-07-19 06:22:38 -04:00
|
|
|
</div>
|
2023-02-20 18:16:29 -05:00
|
|
|
{{if $.IsOrganizationOwner}}
|
2023-07-31 18:13:42 -04:00
|
|
|
<div class="flex-item-body">
|
2023-09-25 04:56:50 -04:00
|
|
|
{{ctx.Locale.Tr "admin.users.2fa"}}
|
2022-07-19 06:22:38 -04:00
|
|
|
<strong>
|
|
|
|
{{if index $.MembersTwoFaStatus .ID}}
|
|
|
|
<span class="text green">{{svg "octicon-check"}}</span>
|
|
|
|
{{else}}
|
|
|
|
{{svg "octicon-x"}}
|
|
|
|
{{end}}
|
|
|
|
</strong>
|
|
|
|
</div>
|
2023-02-20 18:16:29 -05:00
|
|
|
{{end}}
|
2023-07-31 18:13:42 -04:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
<div class="flex-item-trailing">
|
|
|
|
{{if or (eq $.SignedUser.ID .ID) $.IsOrganizationOwner}}
|
|
|
|
{{if $isPublic}}
|
2023-09-25 04:56:50 -04:00
|
|
|
<a class="ui tiny button link-action" href data-url="{{$.OrgLink}}/members/action/private?uid={{.ID}}">{{svg "octicon-eye-closed" 12 "icon"}}{{ctx.Locale.Tr "org.members.public_helper"}}</a>
|
2023-07-31 18:13:42 -04:00
|
|
|
{{else}}
|
2023-09-25 04:56:50 -04:00
|
|
|
<a class="ui tiny button link-action" href data-url="{{$.OrgLink}}/members/action/public?uid={{.ID}}">{{svg "octicon-eye" 12 "icon"}}{{ctx.Locale.Tr "org.members.private_helper"}}</a>
|
2015-12-07 17:30:52 -05:00
|
|
|
{{end}}
|
2023-07-31 18:13:42 -04:00
|
|
|
{{end}}
|
|
|
|
{{if eq $.SignedUser.ID .ID}}
|
|
|
|
<form>
|
|
|
|
<button class="ui red tiny button delete-button" data-modal-id="leave-organization"
|
|
|
|
data-url="{{$.OrgLink}}/members/action/leave" data-datauid="{{.ID}}"
|
|
|
|
data-name="{{.DisplayName}}"
|
2023-09-25 04:56:50 -04:00
|
|
|
data-data-organization-name="{{$.Org.DisplayName}}">{{ctx.Locale.Tr "org.members.leave"}}</button>
|
2023-07-31 18:13:42 -04:00
|
|
|
</form>
|
|
|
|
{{else if $.IsOrganizationOwner}}
|
|
|
|
<form>
|
|
|
|
<button class="ui red tiny button delete-button" data-modal-id="remove-organization-member"
|
|
|
|
data-url="{{$.OrgLink}}/members/action/remove" data-datauid="{{.ID}}"
|
|
|
|
data-name="{{.DisplayName}}"
|
2023-09-25 04:56:50 -04:00
|
|
|
data-data-organization-name="{{$.Org.DisplayName}}">{{ctx.Locale.Tr "org.members.remove"}}</button>
|
2023-07-31 18:13:42 -04:00
|
|
|
</form>
|
|
|
|
{{end}}
|
2015-11-22 01:32:09 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2014-08-15 06:29:41 -04:00
|
|
|
</div>
|
2019-12-06 00:34:54 -05:00
|
|
|
|
|
|
|
{{template "base/paginate" .}}
|
2014-08-15 06:29:41 -04:00
|
|
|
</div>
|
2014-06-22 09:53:40 -04:00
|
|
|
</div>
|
2023-04-24 07:08:59 -04:00
|
|
|
<div class="ui g-modal-confirm delete modal" id="leave-organization">
|
2023-04-23 05:24:19 -04:00
|
|
|
<div class="header">
|
2023-09-25 04:56:50 -04:00
|
|
|
{{ctx.Locale.Tr "org.members.leave"}}
|
2021-08-26 22:57:40 -04:00
|
|
|
</div>
|
|
|
|
<div class="content">
|
2024-02-17 20:48:59 -05:00
|
|
|
<p>{{ctx.Locale.Tr "org.members.leave.detail" (`<span class="dataOrganizationName"></span>`|Safe)}}</p>
|
2021-08-26 22:57:40 -04:00
|
|
|
</div>
|
2023-04-23 05:24:19 -04:00
|
|
|
{{template "base/modal_actions_confirm" .}}
|
2021-08-26 22:57:40 -04:00
|
|
|
</div>
|
2023-04-24 07:08:59 -04:00
|
|
|
<div class="ui g-modal-confirm delete modal" id="remove-organization-member">
|
2023-04-23 05:24:19 -04:00
|
|
|
<div class="header">
|
2023-09-25 04:56:50 -04:00
|
|
|
{{ctx.Locale.Tr "org.members.remove"}}
|
2021-08-26 22:57:40 -04:00
|
|
|
</div>
|
|
|
|
<div class="content">
|
2024-02-17 20:48:59 -05:00
|
|
|
<p>{{ctx.Locale.Tr "org.members.remove.detail" (`<span class="name"></span>`|Safe) (`<span class="dataOrganizationName"></span>`|Safe)}}</p>
|
2021-08-26 22:57:40 -04:00
|
|
|
</div>
|
2023-04-23 05:24:19 -04:00
|
|
|
{{template "base/modal_actions_confirm" .}}
|
2021-08-26 22:57:40 -04:00
|
|
|
</div>
|
|
|
|
|
2015-12-07 17:30:52 -05:00
|
|
|
{{template "base/footer" .}}
|