mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-22 23:21:08 +02:00
26 lines
845 B
Handlebars
26 lines
845 B
Handlebars
{{!
|
|
Copyright (c) HashiCorp, Inc.
|
|
SPDX-License-Identifier: BUSL-1.1
|
|
}}
|
|
|
|
{{#if @model.parentGroupIds.length}}
|
|
{{#each @model.parentGroupIds as |gid|}}
|
|
<LinkedBlock @params={{array "vault.cluster.access.identity.show" "groups" gid this.details}} class="list-item-row">
|
|
<div class="columns is-mobile">
|
|
<div class="column is-10">
|
|
<LinkTo
|
|
@route="vault.cluster.access.identity.show"
|
|
@models={{array "groups" gid "details"}}
|
|
class="is-block has-text-black has-text-weight-semibold"
|
|
>
|
|
<Icon @name="folder" class="has-text-grey-light" />{{gid}}
|
|
</LinkTo>
|
|
</div>
|
|
<div class="column has-text-right">
|
|
</div>
|
|
</div>
|
|
</LinkedBlock>
|
|
{{/each}}
|
|
{{else}}
|
|
<EmptyState @title="This group has no parent groups yet" />
|
|
{{/if}} |