@if (clientList.length === 0 && clientListLoaded) {
{{ strings().page?.monitor?.noClients }}
}
@if (clientList.length === 0 && !clientListLoaded) {
{{ strings().label?.loading }}
}
@if (clientList.length > 0) {
@for (client of clientList; track client.id) {
{{ client.addr }}
@if (client.name) {
({{ client.name }})
}
db{{ client.db }} · {{ client.cmd }} · {{ client.idle }}s
@if (!isReadonly) {
close
}
}
}