mirror of
https://github.com/karl0ss/orvibo-b25-server-kex.git
synced 2025-04-29 12:53:40 +01:00
17 lines
419 B
Plaintext
17 lines
419 B
Plaintext
extends default
|
|
|
|
block content
|
|
div.container
|
|
each socket in sockets
|
|
div.socket
|
|
h2.socket-name
|
|
| #{socket.name}
|
|
h2.socket-name
|
|
| #{socket.uid}
|
|
h2.socket-name
|
|
if socket.state === 1
|
|
a.button-on(href=`/?uid=${socket.uid}`)
|
|
| #{socket.state}
|
|
else
|
|
a.button-off(href=`/?uid=${socket.uid}`)
|
|
| #{socket.state} |