annotate service/wifi/table.mustache @ 1728:81aa0873b48d

port to skaffold, starlette, etc
author drewp@bigasterisk.com
date Fri, 30 Jun 2023 22:03:55 -0700
parents a530d9c5b280
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
1 <?xml version="1.0" encoding="iso-8859-1"?>
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
3 "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
4 <div xmlns="http://www.w3.org/1999/xhtml" class="wifiNow">
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
5
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
6 <table><tr>
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
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
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
10 <th class="ip">IP address</th>
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
11 <th class="rssi">dBm</th>
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
12 <th class="mac">MAC address</th>
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
13 <th class="router">Router</th>
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
14 </tr>
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
15 {{#rows}}
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
16 <tr class="{{cls}}">
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
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
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
19 <td class="ip">{{ip}}</td>
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
20 <td class="rssi">{{signal}}</td>
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
21 <td class="mac">{{mac}}</td>
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
22 <td>{{router}}</td>
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
23 </tr>
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
24 {{/rows}}
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
25 </table>
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
26
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
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>