github.com/iqoqo/nomad@v0.11.3-0.20200911112621-d7021c74d101/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 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          {{allocation-row data-test-deployment-allocation allocation=row.model context="job"}}
    24        {{/t.body}}
    25      {{/list-table}}
    26    </div>
    27  </div>