github.com/blixtra/nomad@v0.7.2-0.20171221000451-da9a1d7bb050/ui/app/templates/components/client-node-row.hbs (about)

     1  <td>{{#link-to "clients.client" node.id class="is-primary"}}{{node.shortId}}{{/link-to}}</td>
     2  <td class="is-200px is-truncatable" title="{{node.name}}">{{node.name}}</td>
     3  <td>{{node.status}}</td>
     4  <td>{{node.address}}</td>
     5  <td>{{node.port}}</td>
     6  <td>{{node.datacenter}}</td>
     7  <td>
     8    {{#if node.allocations.isPending}}
     9      ...
    10    {{else}}
    11      {{node.allocations.length}}
    12    {{/if}}
    13  </td>