mirror of
https://github.com/karl0ss/orvibo-b25-server-kex.git
synced 2025-05-02 13:33:42 +01:00
16 lines
401 B
Plaintext
16 lines
401 B
Plaintext
extends default
|
|
|
|
block content
|
|
div.container
|
|
each socket in sockets
|
|
div.socket
|
|
h2.socket-name
|
|
| #{socket.name}
|
|
h2.socket-name
|
|
| #{socket.uid}
|
|
if socket.state === 'OFF'
|
|
a.button-off(href=`/?uid=${socket.uid}`)
|
|
| #{socket.state}
|
|
else
|
|
a.button-on(href=`/?uid=${socket.uid}`)
|
|
| #{socket.state} |