github.com/Ilhicas/nomad@v1.0.4-0.20210304152020-e86851182bc3/ui/app/templates/components/job-page/system.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  
     6    <div class="boxed-section job-stats">
     7      <div class="boxed-section-body">
     8        <span data-test-job-stat="type"><strong>Type:</strong> {{this.job.type}} | </span>
     9        <span data-test-job-stat="priority"><strong>Priority:</strong> {{this.job.priority}} </span>
    10        {{#if (and this.job.namespace this.system.shouldShowNamespaces)}}
    11          <span data-test-job-stat="namespace"> | <strong>Namespace:</strong> {{this.job.namespace.name}}</span>
    12        {{/if}}
    13      </div>
    14    </div>
    15  
    16    {{#if (can "accept recommendations")}}
    17      {{#each this.job.recommendationSummaries as |summary|}}
    18        <Das::RecommendationAccordion @summary={{summary}} />
    19      {{/each}}
    20    {{/if}}
    21  
    22    <JobPage::Parts::Summary @job={{this.job}} />
    23  
    24    <JobPage::Parts::PlacementFailures @job={{this.job}} />
    25  
    26    <JobPage::Parts::TaskGroups
    27      @job={{this.job}}
    28      @sortProperty={{this.sortProperty}}
    29      @sortDescending={{this.sortDescending}}
    30      @gotoTaskGroup={{this.gotoTaskGroup}} />
    31  
    32    <JobPage::Parts::RecentAllocations @job={{this.job}} />
    33  </JobPage::Parts::Body>