{{#global-header class="page-header"}}
  • {{#link-to "clients.index"}}Clients{{/link-to}}
  • {{/global-header}} {{#gutter-menu class="page-body"}}
    {{#if isForbidden}} {{partial "partials/forbidden-message"}} {{else}} {{#if nodes.length}}
    {{search-box searchTerm=(mut searchTerm) placeholder="Search clients..."}}
    {{/if}} {{#list-pagination source=sortedNodes size=pageSize page=currentPage as |p|}} {{#list-table source=p.list sortProperty=sortProperty sortDescending=sortDescending class="with-foot" as |t|}} {{#t.head}} {{#t.sort-by prop="id"}}ID{{/t.sort-by}} {{#t.sort-by class="is-200px is-truncatable" prop="name"}}Name{{/t.sort-by}} {{#t.sort-by prop="status"}}Status{{/t.sort-by}} {{#t.sort-by prop="isDraining"}}Drain{{/t.sort-by}} {{#t.sort-by prop="schedulingEligibility"}}Eligibility{{/t.sort-by}} Address {{#t.sort-by prop="datacenter"}}Datacenter{{/t.sort-by}} # Allocs {{/t.head}} {{#t.body as |row|}} {{client-node-row data-test-client-node-row node=row.model onClick=(action "gotoNode" row.model)}} {{/t.body}} {{/list-table}}
    {{else}}
    {{#if (eq nodes.length 0)}}

    No Clients

    The cluster currently has no client nodes.

    {{else if searchTerm}}

    No Matches

    No clients match the term {{searchTerm}}

    {{/if}}
    {{/list-pagination}} {{/if}}
    {{/gutter-menu}}