github.com/Ilhicas/nomad@v1.0.4-0.20210304152020-e86851182bc3/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      <ListTable
     7        @source={{@deployment.allocations}}
     8        @class="allocations" as |t|>
     9        <t.head>
    10          <th class="is-narrow"></th>
    11          <th>ID</th>
    12          <th>Task Group</th>
    13          <th>Created</th>
    14          <th>Modified</th>
    15          <th>Status</th>
    16          <th>Version</th>
    17          <th>Node</th>
    18          <th>Volume</th>
    19          <th>CPU</th>
    20          <th>Memory</th>
    21        </t.head>
    22        <t.body as |row|>
    23          <AllocationRow data-test-deployment-allocation @allocation={{row.model}} @context="job" />
    24        </t.body>
    25      </ListTable>
    26    </div>
    27  </div>