eca0e7bf56
* button styles * Further styles including global toggle adjustment * sidebar funcs and header * Functioning task logs in high-level sidebars * same-lineify the show tasks toggle * Changelog * Full-height sidebar calc in css, plz drop soon container queries * Active status and query params for allocations page * Reactive shouldShowLogs getter and added to client and task group pages * Higher order func passing, thanks @DingoEatingFuzz * Non-service job types get allocation params passed * Keyframe animation for task log sidebar * Acceptance test * A few more sub-row tests * Lintfix
27 lines
947 B
Handlebars
27 lines
947 B
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}}
|
|
>
|
|
{{@job.parent.name}}
|
|
</LinkTo>
|
|
</span>
|
|
</:before-namespace>
|
|
</jobPage.ui.StatsBox>
|
|
<jobPage.ui.JobClientStatusSummary />
|
|
<jobPage.ui.Summary @forceCollapsed={{@job.hasClientStatus}} />
|
|
<jobPage.ui.PlacementFailures />
|
|
<jobPage.ui.TaskGroups @sortProperty={{@sortProperty}} @sortDescending={{@sortDescending}} />
|
|
<jobPage.ui.RecentAllocations @activeTask={{@activeTask}} @setActiveTaskQueryParam={{@setActiveTaskQueryParam}} />
|
|
<jobPage.ui.Meta />
|
|
</jobPage.ui.Body>
|
|
</JobPage> |