github.com/emate/nomad@v0.8.2-wo-binpacking/ui/app/templates/components/job-deployment/deployment-allocations.hbs (about) 1 <div data-test-deployment-allocations class="boxed-section"> 2 <div class="boxed-section-head"> 3 Allocations 4 </div> 5 <div class="boxed-section-body is-full-bleed"> 6 {{#list-table 7 source=deployment.allocations 8 class="allocations" as |t|}} 9 {{#t.head}} 10 <th>ID</th> 11 <th>Modified</th> 12 <th>Name</th> 13 <th>Status</th> 14 <th>Version</th> 15 <th>Node</th> 16 <th>CPU</th> 17 <th>Memory</th> 18 {{/t.head}} 19 {{#t.body as |row|}} 20 {{allocation-row data-test-deployment-allocation allocation=row.model context="job"}} 21 {{/t.body}} 22 {{/list-table}} 23 </div> 24 </div>