mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-01 19:17:58 +00:00
46 lines
1.2 KiB
Handlebars
46 lines
1.2 KiB
Handlebars
{{!
|
|
Copyright (c) HashiCorp, Inc.
|
|
SPDX-License-Identifier: BUSL-1.1
|
|
~}}
|
|
|
|
<PageHeader as |p|>
|
|
<p.top>
|
|
<Page::Breadcrumbs @breadcrumbs={{@breadcrumbs}} />
|
|
</p.top>
|
|
<p.levelLeft>
|
|
<h1 class="title is-3" data-test-header-title>
|
|
{{#if @mountName}}
|
|
<Icon @name="kv" @size="24" class="has-text-grey-light" />
|
|
{{@mountName}}
|
|
<span class="tag">version 2</span>
|
|
{{else}}
|
|
{{@pageTitle}}
|
|
{{/if}}
|
|
</h1>
|
|
</p.levelLeft>
|
|
</PageHeader>
|
|
|
|
{{#if (has-block "syncDetails")}}
|
|
{{yield to="syncDetails"}}
|
|
{{/if}}
|
|
|
|
{{#if (has-block "tabLinks")}}
|
|
<div class="tabs-container box is-bottomless is-marginless is-paddingless">
|
|
<nav class="tabs" aria-label="kv tabs">
|
|
<ul>
|
|
{{yield to="tabLinks"}}
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
{{/if}}
|
|
|
|
{{#if (or (has-block "toolbarFilters") (has-block "toolbarActions"))}}
|
|
<Toolbar aria-label="menu items for managing {{or @mountName @pageTitle}}">
|
|
<ToolbarFilters aria-label="filters for secrets list">
|
|
{{yield to="toolbarFilters"}}
|
|
</ToolbarFilters>
|
|
<ToolbarActions aria-label="actions for secrets">
|
|
{{yield to="toolbarActions"}}
|
|
</ToolbarActions>
|
|
</Toolbar>
|
|
{{/if}} |