Mercurial > code > home > repos > homeauto
annotate service/wifi/table.mustache @ 659:ea9ed11598b0
remote suspend, wifi group arg
Ignore-this: 76cd196b934298df35125bd180ede9c6
author | drewp@bigasterisk.com |
---|---|
date | Sat, 23 Nov 2019 12:02:32 -0800 |
parents | a530d9c5b280 |
children |
rev | line source |
---|---|
0 | 1 <?xml version="1.0" encoding="iso-8859-1"?> |
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" | |
3 "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> | |
4 <div xmlns="http://www.w3.org/1999/xhtml" class="wifiNow"> | |
5 | |
6 <table><tr> | |
7 | |
62
f8cc3d1baa85
redo wifi scraper to work with zyxel router report page too. add last connected time (from mongo) to web table
drewp@bigasterisk.com
parents:
0
diff
changeset
|
8 <th class="name">Name</th> |
f8cc3d1baa85
redo wifi scraper to work with zyxel router report page too. add last connected time (from mongo) to web table
drewp@bigasterisk.com
parents:
0
diff
changeset
|
9 <th class="connected">Connected</th> |
0 | 10 <th class="ip">IP address</th> |
11 <th class="rssi">dBm</th> | |
12 <th class="mac">MAC address</th> | |
13 <th class="router">Router</th> | |
14 </tr> | |
15 {{#rows}} | |
16 <tr class="{{cls}}"> | |
17 <td>{{name}}</td> | |
62
f8cc3d1baa85
redo wifi scraper to work with zyxel router report page too. add last connected time (from mongo) to web table
drewp@bigasterisk.com
parents:
0
diff
changeset
|
18 <td class="connected">{{connectedAgo}}</td> |
0 | 19 <td class="ip">{{ip}}</td> |
20 <td class="rssi">{{signal}}</td> | |
21 <td class="mac">{{mac}}</td> | |
22 <td>{{router}}</td> | |
23 </tr> | |
24 {{/rows}} | |
25 </table> | |
26 | |
27 | |
62
f8cc3d1baa85
redo wifi scraper to work with zyxel router report page too. add last connected time (from mongo) to web table
drewp@bigasterisk.com
parents:
0
diff
changeset
|
28 </div> |