2022-05-17 18:52:14 +00:00
|
|
|
|
{{page-title "Secure Variables"}}
|
|
|
|
|
<section class="section">
|
2022-06-07 01:42:23 +00:00
|
|
|
|
<div class="toolbar">
|
|
|
|
|
<div class="toolbar-item">
|
|
|
|
|
{{#if this.variables.length}}
|
|
|
|
|
<SearchBox
|
|
|
|
|
@searchTerm={{mut this.searchTerm}}
|
|
|
|
|
@onChange={{action this.resetPagination}}
|
|
|
|
|
@placeholder="Search variables..."
|
|
|
|
|
/>
|
|
|
|
|
{{/if}}
|
|
|
|
|
</div>
|
|
|
|
|
<div class="toolbar-item is-right-aligned is-mobile-full-width">
|
|
|
|
|
<div class="button-bar">
|
|
|
|
|
{{#if (can "create variable" namespace=this.qpNamespace)}}
|
|
|
|
|
<LinkTo
|
|
|
|
|
@route="variables.new"
|
|
|
|
|
@query={{hash namespace=this.qpNamespace}}
|
|
|
|
|
class="button is-primary"
|
|
|
|
|
>
|
|
|
|
|
Create Secure Variable
|
|
|
|
|
</LinkTo>
|
|
|
|
|
{{else}}
|
|
|
|
|
<button
|
|
|
|
|
class="button is-primary is-disabled tooltip is-right-aligned"
|
|
|
|
|
aria-label="You don’t have sufficient permissions"
|
|
|
|
|
disabled
|
|
|
|
|
type="button"
|
|
|
|
|
>
|
|
|
|
|
Create Secure Variable
|
|
|
|
|
</button>
|
|
|
|
|
{{/if}}
|
2022-05-30 17:10:44 +00:00
|
|
|
|
|
|
|
|
|
</div>
|
2022-05-17 18:52:14 +00:00
|
|
|
|
</div>
|
2022-06-07 01:42:23 +00:00
|
|
|
|
</div>
|
|
|
|
|
{{#if @model.variables.length}}
|
|
|
|
|
<VariablePaths
|
|
|
|
|
@branch={{this.model.pathTree.paths.root}}
|
|
|
|
|
/>
|
|
|
|
|
{{else}}
|
|
|
|
|
<div class="empty-message">
|
|
|
|
|
<h3 data-test-empty-volumes-list-headline class="empty-message-headline">
|
|
|
|
|
No Secure Variables
|
|
|
|
|
</h3>
|
|
|
|
|
<p class="empty-message-body">
|
|
|
|
|
Get started by <LinkTo @route="variables.new">creating a new secure variable</LinkTo>
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
2022-05-17 18:52:14 +00:00
|
|
|
|
{{/if}}
|
|
|
|
|
</section>
|