open-vault/ui/app/templates/partials/secret-list/ssh-role-item.hbs

44 lines
1.2 KiB
Handlebars
Raw Normal View History

2018-07-10 19:38:02 +00:00
{{#linked-block
2018-04-03 14:16:57 +00:00
(concat
"vault.cluster.secrets.backend."
(if (eq item.keyType "ca") "sign" "credentials")
(if (not item.id) "-root")
)
item.id
2018-07-10 19:38:02 +00:00
class="list-item-row"
2018-04-03 14:16:57 +00:00
data-test-secret-link=item.id
}}
<div class="columns is-mobile">
<div class="column is-10">
{{#link-to
(concat
"vault.cluster.secrets.backend."
(if (eq item.keyType "ca") "sign" "credentials")
(if (not item.id) "-root")
)
item.id
class="has-text-black has-text-weight-semibold"
}}
{{i-con
glyph="role"
size=14
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>
<br>
<span class="tag has-text-grey-dark">{{item.keyType}}</span>
{{#if item.zeroAddress}}
<span class="has-text-grey is-size-7">Zero-Address</span>
{{/if}}
</div>
{{/link-to}}
</div>
<div class="column has-text-right">
{{#if (eq backendType 'ssh')}}
{{partial 'partials/role-ssh/popup-menu'}}
{{/if}}
</div>
</div>
2018-07-10 19:38:02 +00:00
{{/linked-block}}