applications/luci-olsr: Fix rowstyle, make html valid
[project/luci.git] / applications / luci-olsr / luasrc / view / status-olsr / topology.htm
1 <%#
2 LuCI - Lua Configuration Interface
3 Copyright 2008 Steven Barth <steven@midlink.org>
4 Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
5 Copyright 2011 Manuel Munz <freifunk at somakoma dot de>
6
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
10
11         http://www.apache.org/licenses/LICENSE-2.0
12
13 $Id$
14
15 -%>
16 <%
17 local i = 1
18 local olsrtools = require "luci.tools.olsr"
19 %>
20
21 <%+header%>
22 <h2><a id="content" name="content"><%:Active OLSR nodes%></a></h2>
23
24 <fieldset class="cbi-section">
25         <legend><%:Overview of currently known OLSR nodes%></legend>
26         <table class="cbi-section-table">
27                 <tr class="cbi-section-table-titles">
28                         <th class="cbi-section-table-cell"><%:OLSR node%></th>
29                         <th class="cbi-section-table-cell"><%:Last hop%></th>
30                         <th class="cbi-section-table-cell"><%:LQ%></th>
31                         <th class="cbi-section-table-cell"><%:NLQ%></th>
32                         <th class="cbi-section-table-cell"><%:ETX%></th>
33                 </tr>
34
35                 <% for k, route in ipairs(routes) do 
36                         local cost = string.format("%.3f", tonumber(route.Cost) or 0)
37                         local color = olsrtools.etx_color(tonumber(cost))
38                 %>
39
40                 <tr class="cbi-section-table-row cbi-rowstyle-<%=i%>">
41                         <td class="cbi-section-table-cell"><a href="http://<%=route["Dest. IP"]%>/cgi-bin-status.html"><%=route["Dest. IP"]%></a></td>
42                         <td class="cbi-section-table-cell"><a href="http://<%=route["Last hop IP"]%>/cgi-bin-status.html"><%=route["Last hop IP"]%></a></td>
43                         <td class="cbi-section-table-cell"><%=route.LQ%></td>
44                         <td class="cbi-section-table-cell"><%=route.NLQ%></td>
45                         <td class="cbi-section-table-cell" style="background-color:<%=color%>"><%=cost%></td>
46                 </tr>
47
48                 <%      i = ((i % 2) + 1)
49                 end %>
50         </table>
51 </fieldset>
52
53 <%+footer%>