all: change most translate statements to new format, some need manual cleanup
[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 <h2><a id="content" name="content"><%:OLSR connections%></a></h2>
17 <p><%:Overview of currently established OLSR connections%></p>
18 <br />
19 <table class="smalltext" cellspacing="0" cellpadding="6">
20 <tr>
21 <th><%:Neighbour IP%></th>
22 <th><%:Local interface IP%></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.Cost = tonumber(link.Cost) or 0
31 if link.Cost == 0 then
32 color = "#bb3333"
33 elseif link.Cost < 4 then
34 color = "#00cc00"
35 elseif link.Cost < 10 then
36 color = "#ffcb05"
37 elseif link.Cost < 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.LQ%></td>
45 <td><%=link.NLQ%></td>
46 <td style="background-color:<%=color%>"><%=string.format("%.3f", link.Cost)%></td>
47 </tr>
48 <% end %>
49 </table>
50 <br />
51 <h3><%:Legend%>:</h3>
52 <ul>
53 <li><strong>LQ: </strong><%:Success rate of sent packages%></li>
54 <li><strong>NLQ: </strong><%:Success rate of received packages%></li>
55 <li><strong>ETX: </strong><%:Expected retransmission count%></li>
56 </ul>
57 <%+footer%>