b06573a903
* params * fix tests * role-pki to pki-role * role-pki-edit to pki/role-pki-edit * configure-pki-secret component * config-pki and config-pki-ca components * fix tests * pki-cert-show and pki-cert-popup * fix
19 lines
587 B
Handlebars
19 lines
587 B
Handlebars
<div class="tabs-container box is-bottomless is-fullwidth is-paddingless">
|
|
<nav class="tabs">
|
|
<ul>
|
|
{{#each (array "cert" "urls" "crl" "tidy") as |section|}}
|
|
<LinkTo @route="vault.cluster.settings.configure-secret-backend.section" @model={{section}}>
|
|
{{#if (eq section "cert")}}
|
|
CA certificate
|
|
{{else if (eq section "urls")}}
|
|
URLs
|
|
{{else if (eq section "crl")}}
|
|
CRL
|
|
{{else if (eq section "tidy")}}
|
|
Tidy
|
|
{{/if}}
|
|
</LinkTo>
|
|
{{/each}}
|
|
</ul>
|
|
</nav>
|
|
</div> |