github.com/hspak/nomad@v0.7.2-0.20180309000617-bc4ae22a39a5/ui/app/templates/components/client-node-row.hbs (about) 1 <td data-test-client-id>{{#link-to "clients.client" node.id class="is-primary"}}{{node.shortId}}{{/link-to}}</td> 2 <td data-test-client-name class="is-200px is-truncatable" title="{{node.name}}">{{node.name}}</td> 3 <td data-test-client-status>{{node.status}}</td> 4 <td data-test-client-address>{{node.address}}</td> 5 <td data-test-client-port>{{node.port}}</td> 6 <td data-test-client-datacenter>{{node.datacenter}}</td> 7 <td data-test-client-allocations> 8 {{#if node.allocations.isPending}} 9 ... 10 {{else}} 11 {{node.allocations.length}} 12 {{/if}} 13 </td>