diff service/tomatoWifi/table.mustache @ 0:6fd208b97616

start Ignore-this: e06ac598970a0d4750f588ab89f56996
author Drew Perttula <drewp@bigasterisk.com>
date Mon, 01 Aug 2011 03:30:30 -0700
parents
children f8cc3d1baa85
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/service/tomatoWifi/table.mustache	Mon Aug 01 03:30:30 2011 -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="lease">Lease</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="lease">{{lease}}</td>
+    <td class="ip">{{ip}}</td>
+    <td class="rssi">{{signal}}</td>
+    <td class="mac">{{mac}}</td>
+    <td>{{router}}</td>
+  </tr>
+  {{/rows}}
+  </table>
+
+
+</div>
\ No newline at end of file