open-vault/ui/app/templates/partials/secret-form-show.hbs

35 lines
962 B
Handlebars
Raw Normal View History

{{#if (and isV2 modelForData.destroyed)}}
2018-11-03 16:26:48 +00:00
<EmptyState
@title="Version {{modelForData.version}} of this secret has been permanently destroyed."
/>
{{else if (and isV2 modelForData.deleted)}}
2018-11-03 16:26:48 +00:00
<EmptyState
@title="Version {{modelForData.version}} of this secret has been deleted."
/>
2018-04-03 14:16:57 +00:00
{{else}}
{{#if showAdvancedMode}}
{{json-editor
value=modelForData.dataAsJSONString
options=(hash
readOnly=true
)
}}
{{else}}
<div class="table info-table-row-header">
<div class="info-table-row thead">
<div class="th column is-one-quarter">
Key
</div>
<div class="th column">
Value
</div>
2018-04-03 14:16:57 +00:00
</div>
</div>
{{#each-in modelForData.secretData as |key value|}}
{{#info-table-row label=key value=value alwaysRender=true}}
{{masked-input value=value displayOnly=true allowCopy=true}}
{{/info-table-row}}
{{/each-in}}
{{/if}}
2018-04-03 14:16:57 +00:00
{{/if}}