open-vault/ui/app/templates/components/identity/item-details.hbs
2022-03-29 09:09:39 -07:00

38 lines
1.4 KiB
Handlebars

<div class="box is-shadowless is-marginless is-fullwidth">
{{#if @model.disabled}}
<AlertBanner
@type="warning"
@title="Attention"
@message="This {{@model.identityType}} is disabled. All associated tokens cannot be used, but are not revoked."
data-test-disabled-warning
>
{{#if @model.canEdit}}
<button onclick={{action "enable" @model}} type="button" class="link" data-test-enable={{true}}>
Enable
</button>
{{/if}}
</AlertBanner>
{{/if}}
<InfoTableRow @label="Name" @value={{@model.name}} data-test-identity-item-name={{true}} />
<InfoTableRow @label="Type" @value={{@model.type}} />
<InfoTableRow @label="ID" @value={{@model.id}} />
<InfoTableRow @label="Merged Ids" @value={{@model.mergedEntityIds}}>
<div>
{{#each @model.mergedEntityIds as |id|}}
<div>
<code class="has-text-black">{{id}}</code>
</div>
{{/each}}
</div>
</InfoTableRow>
<InfoTableRow @label="Created" @value={{@model.creationTime}}>
<time datetime={{@model.creationTime}} title={{@model.creationTime}}>
{{date-format @model.creationTime "MMM dd, yyyy h:mm a"}}
</time>
</InfoTableRow>
<InfoTableRow @label="Last Updated" @value={{this.model.lastUpdateTime}}>
<time datetime={{this.model.lastUpdateTime}} title={{this.model.lastUpdateTime}}>
{{date-format this.model.lastUpdateTime "MMM dd, yyyy h:mm a"}}
</time>
</InfoTableRow>
</div>