diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2008-09-13 17:51:03 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2008-09-13 17:51:03 +0000 |
commit | bedf65aed20be9e24d6aa3b8eda56e009011b906 (patch) | |
tree | b8f28eb25772efe3f052122f9f3681438b5da172 /applications/luci-olsr/luasrc/view/status-olsr/index.htm | |
parent | db04fffe1384721c00d671c0fe069cd26ebd0866 (diff) |
* luci/app-olsr: fix olsr status pages
Diffstat (limited to 'applications/luci-olsr/luasrc/view/status-olsr/index.htm')
-rw-r--r-- | applications/luci-olsr/luasrc/view/status-olsr/index.htm | 16 |
1 files changed, 8 insertions, 8 deletions
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 %> <tr> -<td><a href="http://<%=link["remote IP"]%>"><%=link["remote IP"]%></a></td> +<td><a href="http://<%=link["Remote IP"]%>"><%=link["Remote IP"]%></a></td> <td><%=link["Local IP"]%></td> -<td><%=link.LinkQuality%></td> +<td><%=link.LQ%></td> <td><%=link.NLQ%></td> -<td style="background-color:<%=color%>"><%=string.format("%.3f", link.ETX)%></td> +<td style="background-color:<%=color%>"><%=string.format("%.3f", link.Cost)%></td> </tr> <% end %> </table> |