view service/wifi/table.mustache @ 1279:b4004739640e

fix hang-at-startup bug Ignore-this: 1ad778b512970dd9a582e7f66b93ddcd darcs-hash:20263d454f1d1b80ebe506f0cbe85f0d16ebd6aa
author drewp <drewp@bigasterisk.com>
date Sat, 20 Apr 2019 23:54:11 -0700
parents 34de6cfa0b6b
children
line wrap: on
line source

<?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>