77b4d59f5d
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.
28 lines
740 B
Handlebars
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>
|