035d6dd1e8db0a378bf60a6e63dd97ccb78934d5
[project/luci.git] / applications / luci-olsr / luasrc / view / status-olsr / index.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
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10         http://www.apache.org/licenses/LICENSE-2.0
11
12 $Id$
13
14 -%>
15 <%+header%>
16 <h1><%:olsr_links%></h1>
17 <p><%:olsr_links1%></p>
18 <br />
19 <table class="smalltext" cellspacing="0" cellpadding="6">
20 <tr>
21 <th><%:destination%></th>
22 <th><%:local%></th>
23 <th>LQ</th>
24 <th>NLQ</th>
25 <th>ETX</th>
26 </tr>
27 <% for k, link in ipairs(links) do 
28         local color = "#bb3333"
29         
30         link.ETX = tonumber(link.ETX) or 0
31         if link.ETX == 0 then
32                 color = "#bb3333"
33         elseif link.ETX < 4 then
34                 color = "#00cc00"
35         elseif link.ETX < 10 then
36                 color = "#ffcb05"
37         elseif link.ETX < 100 then
38                 color = "#ff6600"
39         end
40 %>
41 <tr>
42 <td><a href="http://<%=link["remote IP"]%>"><%=link["remote IP"]%></a></td>
43 <td><%=link["Local IP"]%></td>
44 <td><%=link.LinkQuality%></td>
45 <td><%=link.NLQ%></td>
46 <td style="background-color:<%=color%>"><%=string.format("%.3f", link.ETX)%></td>
47 </tr>
48 <% end %>
49 </table>
50 <br />
51 <h3><%:legend%>:</h3>
52 <ul>
53 <li><strong>LQ: </strong><%:olsrlinks_lq1%></li>
54 <li><strong>NLQ: </strong><%:olsrlinks_nlq1%></li>
55 <li><strong>ETX: </strong><%:olsrlinks_etx1%></li>
56 </ul>
57 <%+footer%>