open-nomad/ui/app/templates/components/job-row.hbs
Michael Lange e8593ec1bb
ui: Update namespaces design (#10444)
This rethinks namespaces as a filter on list pages rather than a global setting.

The biggest net-new feature here is being able to select All (*) to list all jobs
or CSI volumes across namespaces.
2021-04-29 15:00:59 -05:00

33 lines
1.1 KiB
Handlebars

<td data-test-job-name><LinkTo @route="jobs.job" @model={{this.job.plainId}} @query={{hash namespace=this.job.namespace.id}} class="is-primary">{{this.job.name}}</LinkTo></td>
{{#if this.system.shouldShowNamespaces}}
<td data-test-job-namespace>{{this.job.namespace.name}}</td>
{{/if}}
{{#if (eq @context "child")}}
<td data-test-job-submit-time>{{format-month-ts this.job.submitTime}}</td>
{{/if}}
<td data-test-job-status>
<span class="tag {{this.job.statusClass}}">{{this.job.status}}</span>
</td>
<td data-test-job-type>{{this.job.displayType}}</td>
<td data-test-job-priority>{{this.job.priority}}</td>
<td data-test-job-task-groups>
{{#if this.job.taskGroupCount}}
{{this.job.taskGroupCount}}
{{else}}
--
{{/if}}
</td>
<td data-test-job-allocations>
<div class="inline-chart">
{{#if this.job.hasChildren}}
{{#if (gt this.job.totalChildren 0)}}
<ChildrenStatusBar @job={{this.job}} @isNarrow={{true}} />
{{else}}
<em class="is-faded">No Children</em>
{{/if}}
{{else}}
<AllocationStatusBar @allocationContainer={{this.job}} @isNarrow={{true}} />
{{/if}}
</div>
</td>