Files
nomad/ui/app/templates/components/client-node-row.hbs
Alex Dadgar ddc2efa4ac sync
2017-09-19 10:08:23 -05:00

14 lines
381 B
Handlebars

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