Files
nomad/ui/app/templates/components/client-node-row.hbs

14 lines
379 B
Handlebars

<td>{{#link-to "nodes.node" node.id class="is-primary"}}{{node.shortId}}{{/link-to}}</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>