34 lines
1 KiB
Handlebars
34 lines
1 KiB
Handlebars
<JobPage @job={{@job}} as |jobPage|>
|
|
<jobPage.ui.Body>
|
|
<jobPage.ui.Error />
|
|
<jobPage.ui.Title @title={{@job.trimmedName}} />
|
|
<jobPage.ui.StatsBox>
|
|
<:before-namespace>
|
|
<span class="pair" data-test-job-stat="parent">
|
|
<span class="term">
|
|
Parent
|
|
</span>
|
|
<LinkTo
|
|
@route="jobs.job"
|
|
@model={{@job.parent}}
|
|
@query={{hash namespace=@job.parent.namespace.name}}
|
|
>
|
|
{{this.job.parent.name}}
|
|
</LinkTo>
|
|
</span>
|
|
</:before-namespace>
|
|
</jobPage.ui.StatsBox>
|
|
{{#if @job.hasClientStatus}}
|
|
<jobPage.ui.JobClientStatusSummary @gotoClients={{@gotoClients}} />
|
|
{{/if}}
|
|
<jobPage.ui.Summary @forceCollapsed={{@job.hasClientStatus}} />
|
|
<jobPage.ui.PlacementFailures />
|
|
<jobPage.ui.TaskGroups
|
|
@sortProperty={{@sortProperty}}
|
|
@sortDescending={{@sortDescending}}
|
|
@gotoTaskGroup={{@gotoTaskGroup}}
|
|
/>
|
|
<jobPage.ui.RecentAllocations />
|
|
<jobPage.ui.Meta />
|
|
</jobPage.ui.Body>
|
|
</JobPage> |