mirror of
https://github.com/go-gitea/gitea
synced 2024-11-03 04:39:14 +01:00
e37342db0c
* Add modals to Organization and Team remove/leave
Add confirmation modals to Organization and Team remove and leave.
Fix #16215
Signed-off-by: Andrew Thornton <art27@cantab.net>
* avoid for-in
Signed-off-by: Andrew Thornton <art27@cantab.net>
* Revert "avoid for-in"
This reverts commit 2af9a6f9d4
.
* Apply suggestions from code review
Co-authored-by: silverwind <me@silverwind.io>
Co-authored-by: 6543 <6543@obermui.de>
Co-authored-by: silverwind <me@silverwind.io>
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
101 lines
3.7 KiB
Handlebars
101 lines
3.7 KiB
Handlebars
{{template "base/head" .}}
|
|
<div class="page-content organization members">
|
|
{{template "org/header" .}}
|
|
<div class="ui container">
|
|
{{template "base/alert" .}}
|
|
|
|
<div class="list">
|
|
{{ range .Members}}
|
|
<div class="item ui grid">
|
|
<div class="ui four wide column" style="display: flex;">
|
|
{{avatar . 48}}
|
|
<div>
|
|
<div class="meta"><a href="{{.HomeLink}}">{{.Name}}</a></div>
|
|
<div class="meta">{{.FullName}}</div>
|
|
</div>
|
|
</div>
|
|
<div class="ui four wide column center">
|
|
<div class="meta">
|
|
{{$.i18n.Tr "org.members.membership_visibility"}}
|
|
</div>
|
|
<div class="meta">
|
|
{{ $isPublic := index $.MembersIsPublicMember .ID}}
|
|
{{if $isPublic}}
|
|
<strong>{{$.i18n.Tr "org.members.public"}}</strong>
|
|
{{if or (eq $.SignedUser.ID .ID) $.IsOrganizationOwner}}(<a class="link-action" href data-url="{{$.OrgLink}}/members/action/private?uid={{.ID}}">{{$.i18n.Tr "org.members.public_helper"}}</a>){{end}}
|
|
{{else}}
|
|
<strong>{{$.i18n.Tr "org.members.private"}}</strong>
|
|
{{if or (eq $.SignedUser.ID .ID) $.IsOrganizationOwner}}(<a class="link-action" href data-url="{{$.OrgLink}}/members/action/public?uid={{.ID}}">{{$.i18n.Tr "org.members.private_helper"}}</a>){{end}}
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
<div class="ui three wide column center">
|
|
<div class="meta">
|
|
{{$.i18n.Tr "org.members.member_role"}}
|
|
</div>
|
|
<div class="meta">
|
|
<strong>{{if index $.MembersIsUserOrgOwner .ID}}{{svg "octicon-shield-lock"}} {{$.i18n.Tr "org.members.owner"}}{{else}}{{$.i18n.Tr "org.members.member"}}{{end}}</strong>
|
|
</div>
|
|
</div>
|
|
<div class="ui one wide column center">
|
|
<div class="meta">
|
|
{{$.i18n.Tr "admin.users.2fa"}}
|
|
</div>
|
|
<div class="meta">
|
|
<strong>
|
|
{{if index $.MembersTwoFaStatus .ID}}
|
|
<span class="text green">{{svg "octicon-check"}}</span>
|
|
{{else}}
|
|
{{svg "octicon-x"}}
|
|
{{end}}
|
|
</strong>
|
|
</div>
|
|
</div>
|
|
<div class="ui four wide column">
|
|
<div class="text right">
|
|
{{if eq $.SignedUser.ID .ID}}
|
|
<form>
|
|
<button class="ui red small button delete-button" data-modal-id="leave-organization"
|
|
data-url="{{$.OrgLink}}/members/action/leave" data-datauid="{{.ID}}"
|
|
data-name="{{.DisplayName}}"
|
|
data-data-organization-name="{{$.Org.DisplayName}}">{{$.i18n.Tr "org.members.leave"}}</button>
|
|
</form>
|
|
{{else if $.IsOrganizationOwner}}
|
|
<form>
|
|
<button class="ui red small button delete-button" data-modal-id="remove-organization-member"
|
|
data-url="{{$.OrgLink}}/members/action/remove" data-datauid="{{.ID}}"
|
|
data-name="{{.DisplayName}}"
|
|
data-data-organization-name="{{$.Org.DisplayName}}">{{$.i18n.Tr "org.members.remove"}}</button>
|
|
</form>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
|
|
{{template "base/paginate" .}}
|
|
</div>
|
|
</div>
|
|
<div class="ui small basic delete modal" id="leave-organization">
|
|
<div class="ui icon header">
|
|
{{svg "octicon-x" 16 "close inside"}}
|
|
{{$.i18n.Tr "org.members.leave"}}
|
|
</div>
|
|
<div class="content">
|
|
<p>{{$.i18n.Tr "org.members.leave.detail" `<span class="dataOrganizationName"></span>` | Safe}}</p>
|
|
</div>
|
|
{{template "base/delete_modal_actions" .}}
|
|
</div>
|
|
<div class="ui small basic delete modal" id="remove-organization-member">
|
|
<div class="ui icon header">
|
|
{{svg "octicon-x" 16 "close inside"}}
|
|
{{$.i18n.Tr "org.members.remove"}}
|
|
</div>
|
|
<div class="content">
|
|
<p>{{$.i18n.Tr "org.members.remove.detail" `<span class="name"></span>` `<span class="dataOrganizationName"></span>` | Safe}}</p>
|
|
</div>
|
|
{{template "base/delete_modal_actions" .}}
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|