github.com/Ilhicas/nomad@v1.0.4-0.20210304152020-e86851182bc3/ui/app/templates/components/job-page/periodic-child.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}} @title={{this.job.trimmedName}} @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        <span data-test-job-stat="parent">
    11          <strong>Parent:</strong>
    12          <LinkTo @route="jobs.job" @model={{this.job.parent}} @query={{hash jobNamespace=this.job.parent.namespace.name}}>
    13            {{this.job.parent.name}}
    14          </LinkTo>
    15        </span>
    16        {{#if (and this.job.namespace this.system.shouldShowNamespaces)}}
    17          <span data-test-job-stat="namespace"> | <strong>Namespace:</strong> {{this.job.namespace.name}}</span>
    18        {{/if}}
    19      </div>
    20    </div>
    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>