open-vault/ui/app/templates/partials/secret-list/pki-cert-item.hbs
Matthew Irish 0ccc8467ec
UI ember engines (#6718)
Adds replication engine and core in-repo addon
2019-05-13 14:05:25 -05:00

38 lines
913 B
Handlebars

{{#linked-block
(concat
"vault.cluster.secrets.backend."
"show"
(if (not item.id) "-root")
)
item.idForNav
class="list-item-row"
data-test-secret-link=item.id
tagName="div"
encode=true
}}
<div class="columns is-mobile">
<div class="column is-10">
{{#link-to
(concat
"vault.cluster.secrets.backend."
"show"
(if (not item.id) "-root")
)
item.idForNav
class="has-text-black has-text-weight-semibold"
}}
<Icon
@glyph="file-outline"
class="has-text-grey-light is-pulled-left"
/>
<div class="role-item-details">
<span class="is-underline">{{if (eq item.id " ") "(self)" (or item.keyWithoutParent item.id)}}</span>
</div>
{{/link-to}}
</div>
<div class="column has-text-right">
{{pki-cert-popup item=item}}
</div>
</div>
{{/linked-block}}