Mercurial > code > home > repos > homeauto
diff service/wifi/table.mustache @ 1223:34de6cfa0b6b
rename historical 'tomatoWifi'
Ignore-this: 8a3f1f261df50e8029cf9de5b11a6896
darcs-hash:1b2345513349fd24e5b3992141f0b0f72ad43910
author | drewp <drewp@bigasterisk.com> |
---|---|
date | Sat, 30 Mar 2019 16:58:08 -0700 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/service/wifi/table.mustache Sat Mar 30 16:58:08 2019 -0700 @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" +"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<div xmlns="http://www.w3.org/1999/xhtml" class="wifiNow"> + + <table><tr> + + <th class="name">Name</th> + <th class="connected">Connected</th> + <th class="ip">IP address</th> + <th class="rssi">dBm</th> + <th class="mac">MAC address</th> + <th class="router">Router</th> + </tr> + {{#rows}} + <tr class="{{cls}}"> + <td>{{name}}</td> + <td class="connected">{{connectedAgo}}</td> + <td class="ip">{{ip}}</td> + <td class="rssi">{{signal}}</td> + <td class="mac">{{mac}}</td> + <td>{{router}}</td> + </tr> + {{/rows}} + </table> + + +</div>