open-nomad/ui/app/templates/variables/new.hbs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
535 B
Handlebars
Raw Normal View History

{{page-title "New Secure Variable"}}
<Breadcrumb @crumb={{hash label="New" args=(array "variables.new")}} />
<section class="section">
<h1 class="title variable-title">
Create a Secure Variable
<Toggle
data-test-memory-toggle
@isActive={{eq this.view "json"}}
@onToggle={{action this.toggleView}}
title="JSON"
>JSON</Toggle>
</h1>
<SecureVariableForm
@model={{this.model}}
@path={{this.path}}
@existingVariables={{this.existingVariables}}
@view={{this.view}}
/>
</section>