open-nomad/ui/app/templates/components/job-deployment/deployment-allocations.hbs
2023-04-10 15:36:59 +00:00

52 lines
1.4 KiB
Handlebars

{{!
Copyright (c) HashiCorp, Inc.
SPDX-License-Identifier: MPL-2.0
}}
<div data-test-deployment-allocations class="boxed-section">
<div class="boxed-section-head">
Allocations
</div>
<div class="boxed-section-body {{if this.job.allocations.length "is-full-bleed"}}">
{{#if @deployment.allocations.length}}
<ListTable @source={{@deployment.allocations}} @class="allocations" as |t|>
<t.head>
<th class="is-narrow"></th>
<th>ID</th>
<th>Task Group</th>
<th>Created</th>
<th>Modified</th>
<th>Status</th>
<th>Version</th>
<th>Node</th>
<th>Volume</th>
<th>CPU</th>
<th>Memory</th>
</t.head>
<t.body as |row|>
<AllocationRow
data-test-deployment-allocation
@allocation={{row.model}}
@context="job"
/>
</t.body>
</ListTable>
{{else}}
<div class="empty-message" data-test-empty-recent-allocations>
<h3
class="empty-message-headline"
data-test-empty-recent-allocations-headline
>
No Allocations
</h3>
<p
class="empty-message-body"
data-test-empty-recent-allocations-message
>
No allocations have been placed.
</p>
</div>
{{/if}}
</div>
</div>