From bedf65aed20be9e24d6aa3b8eda56e009011b906 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Sat, 13 Sep 2008 17:51:03 +0000 Subject: * luci/app-olsr: fix olsr status pages --- applications/luci-olsr/luasrc/view/status-olsr/index.htm | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'applications/luci-olsr/luasrc/view/status-olsr/index.htm') diff --git a/applications/luci-olsr/luasrc/view/status-olsr/index.htm b/applications/luci-olsr/luasrc/view/status-olsr/index.htm index 035d6dd1e8..037151d1da 100644 --- a/applications/luci-olsr/luasrc/view/status-olsr/index.htm +++ b/applications/luci-olsr/luasrc/view/status-olsr/index.htm @@ -27,23 +27,23 @@ $Id$ <% for k, link in ipairs(links) do local color = "#bb3333" - link.ETX = tonumber(link.ETX) or 0 - if link.ETX == 0 then + link.Cost = tonumber(link.Cost) or 0 + if link.Cost == 0 then color = "#bb3333" - elseif link.ETX < 4 then + elseif link.Cost < 4 then color = "#00cc00" - elseif link.ETX < 10 then + elseif link.Cost < 10 then color = "#ffcb05" - elseif link.ETX < 100 then + elseif link.Cost < 100 then color = "#ff6600" end %> -"><%=link["remote IP"]%> +"><%=link["Remote IP"]%> <%=link["Local IP"]%> -<%=link.LinkQuality%> +<%=link.LQ%> <%=link.NLQ%> -<%=string.format("%.3f", link.ETX)%> +<%=string.format("%.3f", link.Cost)%> <% end %> -- cgit v1.2.3