github.com/manicqin/nomad@v0.9.5/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>CPU</th>
    19          <th>Memory</th>
    20        {{/t.head}}
    21        {{#t.body as |row|}}
    22          {{allocation-row data-test-deployment-allocation allocation=row.model context="job"}}
    23        {{/t.body}}
    24      {{/list-table}}
    25    </div>
    26  </div>