extends ../layouts/main block content table.uk-table.uk-table-small.uk-table-divider thead th Host th Status th Memory th Platform th Arch th Created th Updated tbody each host in hosts tr td a(href=`/admin/host/${host._id}`)= host.hostname td= host.status td= numeral((host.totalmem - host.freemem) / host.totalmem).format('0.00%') td= host.platform td= host.arch td= moment(host.created).fromNow() td= host.updated ? moment(host.updated).fromNow() : 'N/A'