github.com/hernad/nomad@v1.6.112/ui/app/templates/jobs/job/definition.hbs (about)

     1  {{!
     2    Copyright (c) HashiCorp, Inc.
     3    SPDX-License-Identifier: MPL-2.0
     4  ~}}
     5  
     6  {{page-title "Job " this.job.name " definition"}}
     7  <JobSubnav @job={{this.job}} />
     8  <section class="section">
     9    <JobEditor
    10      @cancelable={{true}}
    11      @context={{this.context}}
    12      @definition={{this.definition}}
    13      @format={{this.format}}
    14      @job={{this.job}}
    15      @specification={{this.specification}}
    16      @variables={{hash flags=this.variableFlags literal=this.variableLiteral}}
    17      @view={{this.view}}
    18      @onSubmit={{action this.onSubmit}}
    19      @onSelect={{this.selectView}}
    20      @onToggleEdit={{this.toggleEdit}}
    21      data-test-job-editor
    22    />
    23  </section>