open-vault/ui/app/templates/components/identity/item-groups.hbs
2018-11-15 16:47:47 -06:00

32 lines
907 B
Handlebars

{{#if model.groupIds}}
{{#each model.directGroupIds as |gid|}}
{{#link-to "vault.cluster.access.identity.show" "groups" gid "details"
class="list-item-row"
}}{{i-con
glyph='folder'
size=14
class="has-text-grey-light"
}}{{gid}}{{/link-to}}
{{/each}}
{{#each model.inheritedGroupIds as |gid|}}
{{#linked-block
"vault.cluster.access.identity.show" "groups" gid "details"
class="list-item-row"
}}
{{#link-to "vault.cluster.access.identity.show" "groups" gid "details"
class="has-text-black"
}}{{i-con
glyph='folder'
size=14
class="has-text-grey-light"
}}{{gid}}
{{/link-to}}
<span class="tag has-text-grey is-size-8">inherited</span>
{{/linked-block}}
{{/each}}
{{else}}
<EmptyState
@title="{{model.name}} is not a member of any groups."
/>
{{/if}}