diff options
author | zeripath <art27@cantab.net> | 2021-08-27 03:57:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-26 22:57:40 -0400 |
commit | e37342db0c102ef12ae70072d9f4bbef89338085 (patch) | |
tree | 50598f0627960e60aec866568a29e3cffa378c5b /templates/org/member/members.tmpl | |
parent | 3289aceec2b760e690fe7505d22ff685950cd0e7 (diff) | |
download | gitea-e37342db0c102ef12ae70072d9f4bbef89338085.tar.gz gitea-e37342db0c102ef12ae70072d9f4bbef89338085.zip |
Add modals to Organization and Team remove/leave (#16471)
* 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 2af9a6f9d46ed31b6fc6e3a29e695577dcf09f75.
* 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>
Diffstat (limited to 'templates/org/member/members.tmpl')
-rw-r--r-- | templates/org/member/members.tmpl | 37 |
1 files changed, 31 insertions, 6 deletions
diff --git a/templates/org/member/members.tmpl b/templates/org/member/members.tmpl index 0952d12766..ecb535d570 100644 --- a/templates/org/member/members.tmpl +++ b/templates/org/member/members.tmpl @@ -54,14 +54,18 @@ <div class="ui four wide column"> <div class="text right"> {{if eq $.SignedUser.ID .ID}} - <form method="post" action="{{$.OrgLink}}/members/action/leave"> - {{$.CsrfTokenHtml}} - <button type="submit" class="ui red small button" name="uid" value="{{.ID}}">{{$.i18n.Tr "org.members.leave"}}</button> + <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 method="post" action="{{$.OrgLink}}/members/action/remove"> - {{$.CsrfTokenHtml}} - <button type="submit" class="ui red small button" name="uid" value="{{.ID}}">{{$.i18n.Tr "org.members.remove"}}</button> + <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> @@ -73,4 +77,25 @@ {{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" .}} |