extends ../layouts/main block content .uk-overflow-auto table.uk-table.uk-table-divider.uk-table-hover.uk-table-small.uk-table-justify thead th Username th Display Name th Created th User ID tbody each userAccount in userAccounts tr td a(href=`/admin/user/${userAccount._id}`)= userAccount.username td if userAccount.displayName a(href=`/admin/user/${userAccount._id}`)= userAccount.displayName else .uk-text-muted N/A td= moment(userAccount.created).format('YYYY-MM-DD hh:mm a') td= userAccount._id