open-nomad/ui/app/templates/components/job-deployment/deployment-allocations.hbs
Buck Doyle 77b4d59f5d
Change edition to Octane (#8418)
This updates the Ember edition setting to Octane, which I removed from #8319
because it required the template-only Glimmer components setting to be turned
on, which this does. These changes to templates accommodate that setting.
2020-07-13 09:26:12 -05:00

28 lines
740 B
Handlebars

<div data-test-deployment-allocations class="boxed-section">
<div class="boxed-section-head">
Allocations
</div>
<div class="boxed-section-body is-full-bleed">
<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>
</div>
</div>