2023-04-23 12:21:21 +02:00
|
|
|
{{template "user/settings/layout_head" (dict "ctxData" . "pageClass" "user settings organization")}}
|
|
|
|
<div class="user-setting-content">
|
2017-06-02 10:43:44 +02:00
|
|
|
<h4 class="ui top attached header">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "settings.orgs"}}
|
2017-06-02 10:43:44 +02:00
|
|
|
{{if .SignedUser.CanCreateOrganization}}
|
|
|
|
<div class="ui right">
|
2023-09-25 10:56:50 +02:00
|
|
|
<a class="ui primary tiny button" href="{{AppSubUrl}}/org/create">{{ctx.Locale.Tr "admin.orgs.new_orga"}}</a>
|
2017-06-02 10:43:44 +02:00
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment orgs">
|
|
|
|
{{if .Orgs}}
|
2023-08-01 00:13:42 +02:00
|
|
|
<div class="flex-list">
|
2017-06-02 10:43:44 +02:00
|
|
|
{{range .Orgs}}
|
2023-08-01 00:13:42 +02:00
|
|
|
<div class="flex-item">
|
|
|
|
<div class="flex-item-leading">
|
2023-08-10 05:19:39 +02:00
|
|
|
{{ctx.AvatarUtils.Avatar . 28 "mini"}}
|
2023-08-01 00:13:42 +02:00
|
|
|
</div>
|
|
|
|
<div class="flex-item-main">
|
|
|
|
<div class="flex-item-title">{{template "shared/user/name" .}}</div>
|
|
|
|
<div class="flex-text-body">
|
|
|
|
{{.Description}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="flex-item-trailing">
|
2022-11-30 10:00:00 +01:00
|
|
|
<form>
|
2020-02-27 23:00:13 +01:00
|
|
|
{{$.CsrfTokenHtml}}
|
2022-11-30 10:00:00 +01:00
|
|
|
<button class="ui red button delete-button" data-modal-id="leave-organization"
|
|
|
|
data-url="{{.OrganisationLink}}/members/action/leave" data-datauid="{{$.SignedUser.ID}}"
|
|
|
|
data-name="{{$.SignedUser.DisplayName}}"
|
2023-09-25 10:56:50 +02:00
|
|
|
data-data-organization-name="{{.DisplayName}}">{{ctx.Locale.Tr "org.members.leave"}}
|
2022-11-30 10:00:00 +01:00
|
|
|
</button>
|
2020-02-27 23:00:13 +01:00
|
|
|
</form>
|
2017-06-02 10:43:44 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2021-11-22 14:51:45 +01:00
|
|
|
{{template "base/paginate" .}}
|
2017-06-02 10:43:44 +02:00
|
|
|
{{else}}
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "settings.orgs_none"}}
|
2017-06-02 10:43:44 +02:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-04-23 12:21:21 +02:00
|
|
|
|
2023-04-24 13:08:59 +02:00
|
|
|
<div class="ui g-modal-confirm delete modal" id="leave-organization">
|
2023-04-23 11:24:19 +02:00
|
|
|
<div class="header">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "org.members.leave"}}
|
2022-11-30 10:00:00 +01:00
|
|
|
</div>
|
|
|
|
<div class="content">
|
2023-09-25 10:56:50 +02:00
|
|
|
<p>{{ctx.Locale.Tr "org.members.leave.detail" `<span class="dataOrganizationName"></span>` | Safe}}</p>
|
2022-11-30 10:00:00 +01:00
|
|
|
</div>
|
2023-04-23 11:24:19 +02:00
|
|
|
{{template "base/modal_actions_confirm" .}}
|
2022-11-30 10:00:00 +01:00
|
|
|
</div>
|
2023-04-23 12:21:21 +02:00
|
|
|
|
|
|
|
{{template "user/settings/layout_footer" .}}
|