luci/applications/luci-olsr/luasrc/view/status-olsr/index.htm

57 lines
1.3 KiB
HTML
Raw Normal View History

2008-07-07 22:00:56 +00:00
<%#
LuCI - Lua Configuration Interface
Copyright 2008 Steven Barth <steven@midlink.org>
Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
$Id$
-%>
2008-05-08 16:14:49 +00:00
<%+header%>
2008-06-09 10:10:29 +00:00
<h1><%:olsr_links%></h1>
<p><%:olsr_links1%></p>
2008-05-08 16:14:49 +00:00
<br />
<table class="smalltext" cellspacing="0" cellpadding="6">
2008-05-08 16:14:49 +00:00
<tr>
2008-06-09 10:10:29 +00:00
<th><%:destination%></th>
<th><%:local%></th>
2008-05-08 16:14:49 +00:00
<th>LQ</th>
<th>NLQ</th>
<th>ETX</th>
</tr>
<% for k, link in ipairs(links) do
local color = "#bb3333"
2008-09-13 17:51:03 +00:00
link.Cost = tonumber(link.Cost) or 0
if link.Cost == 0 then
2008-05-08 16:14:49 +00:00
color = "#bb3333"
2008-09-13 17:51:03 +00:00
elseif link.Cost < 4 then
2008-05-08 16:14:49 +00:00
color = "#00cc00"
2008-09-13 17:51:03 +00:00
elseif link.Cost < 10 then
2008-05-08 16:14:49 +00:00
color = "#ffcb05"
2008-09-13 17:51:03 +00:00
elseif link.Cost < 100 then
2008-05-08 16:14:49 +00:00
color = "#ff6600"
end
%>
<tr>
2008-09-13 17:51:03 +00:00
<td><a href="http://<%=link["Remote IP"]%>"><%=link["Remote IP"]%></a></td>
2008-05-08 16:14:49 +00:00
<td><%=link["Local IP"]%></td>
2008-09-13 17:51:03 +00:00
<td><%=link.LQ%></td>
2008-05-08 16:14:49 +00:00
<td><%=link.NLQ%></td>
2008-09-13 17:51:03 +00:00
<td style="background-color:<%=color%>"><%=string.format("%.3f", link.Cost)%></td>
2008-05-08 16:14:49 +00:00
</tr>
<% end %>
</table>
<br />
2008-06-09 10:10:29 +00:00
<h3><%:legend%>:</h3>
2008-05-08 16:14:49 +00:00
<ul>
2008-06-09 10:10:29 +00:00
<li><strong>LQ: </strong><%:olsrlinks_lq1%></li>
<li><strong>NLQ: </strong><%:olsrlinks_nlq1%></li>
<li><strong>ETX: </strong><%:olsrlinks_etx1%></li>
2008-05-08 16:14:49 +00:00
</ul>
<%+footer%>