github.com/Ilhicas/nomad@v1.0.4-0.20210304152020-e86851182bc3/ui/app/templates/components/job-page/parameterized.hbs (about)

     1  <JobPage::Parts::Body @job={{this.job}}>
     2    <JobPage::Parts::Error @errorMessage={{this.errorMessage}} @onDismiss={{action "clearErrorMessage"}} />
     3  
     4    <JobPage::Parts::Title @job={{this.job}} @handleError={{action "handleError"}}>
     5      <span class="tag is-hollow">Parameterized</span>
     6    </JobPage::Parts::Title>
     7  
     8    <div class="boxed-section job-stats">
     9      <div class="boxed-section-body">
    10        <span data-test-job-stat="version"><strong>Version:</strong> {{this.job.version}} | </span>
    11        <span data-test-job-stat="priority"><strong>Priority:</strong> {{this.job.priority}} </span>
    12        {{#if (and this.job.namespace this.system.shouldShowNamespaces)}}
    13          <span data-test-job-stat="namespace"> | <strong>Namespace:</strong> {{this.job.namespace.name}}</span>
    14        {{/if}}
    15      </div>
    16    </div>
    17  
    18    <JobPage::Parts::Summary @job={{this.job}} />
    19    <JobPage::Parts::Children
    20      @job={{this.job}}
    21      @sortProperty={{this.sortProperty}}
    22      @sortDescending={{this.sortDescending}}
    23      @currentPage={{this.currentPage}}
    24      @gotoJob={{this.gotoJob}} />
    25  </JobPage::Parts::Body>