open-nomad/ui/app/templates/components/client-node-row.hbs
2018-01-17 09:03:59 -08:00

14 lines
553 B
Handlebars

<td data-test-client-id>{{#link-to "clients.client" node.id class="is-primary"}}{{node.shortId}}{{/link-to}}</td>
<td data-test-client-name class="is-200px is-truncatable" title="{{node.name}}">{{node.name}}</td>
<td data-test-client-status>{{node.status}}</td>
<td data-test-client-address>{{node.address}}</td>
<td data-test-client-port>{{node.port}}</td>
<td data-test-client-datacenter>{{node.datacenter}}</td>
<td data-test-client-allocations>
{{#if node.allocations.isPending}}
...
{{else}}
{{node.allocations.length}}
{{/if}}
</td>