github.com/Ilhicas/nomad@v1.0.4-0.20210304152020-e86851182bc3/ui/app/templates/components/job-page/batch.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 <JobPage::Parts::Summary @job={{this.job}} /> 17 18 <JobPage::Parts::PlacementFailures @job={{this.job}} /> 19 20 <JobPage::Parts::TaskGroups 21 @job={{this.job}} 22 @sortProperty={{this.sortProperty}} 23 @sortDescending={{this.sortDescending}} 24 @gotoTaskGroup={{this.gotoTaskGroup}} /> 25 26 <JobPage::Parts::RecentAllocations @job={{this.job}} /> 27 </JobPage::Parts::Body>