github.com/iqoqo/nomad@v0.11.3-0.20200911112621-d7021c74d101/ui/app/templates/components/client-node-row.hbs (about) 1 <td data-test-icon class="is-narrow"> 2 {{#if node.unhealthyDrivers.length}} 3 <span class="tooltip text-center" role="tooltip" aria-label="Client has unhealthy drivers"> 4 {{x-icon "warning" class="is-warning"}} 5 </span> 6 {{/if}} 7 </td> 8 <td data-test-client-id>{{#link-to "clients.client" node.id class="is-primary"}}{{node.shortId}}{{/link-to}}</td> 9 <td data-test-client-name class="is-200px is-truncatable" title="{{node.name}}">{{node.name}}</td> 10 <td data-test-client-composite-status> 11 <span class="tooltip" aria-label="{{node.status}} / {{if node.isDraining "draining" "not draining"}} / {{if node.isEligible "eligible" "not eligible"}}"> 12 <span class="{{compositeStatusClass}}">{{node.compositeStatus}}</span> 13 </span> 14 </td> 15 <td data-test-client-address>{{node.httpAddr}}</td> 16 <td data-test-client-datacenter>{{node.datacenter}}</td> 17 <td data-test-client-volumes>{{if node.hostVolumes.length node.hostVolumes.length}}</td> 18 <td data-test-client-allocations> 19 {{#if node.allocations.isPending}} 20 ... 21 {{else}} 22 {{node.runningAllocations.length}} 23 {{/if}} 24 </td>