diff options
Diffstat (limited to 'applications/luci-olsr/luasrc/view')
-rw-r--r-- | applications/luci-olsr/luasrc/view/status-olsr/legend.htm | 2 | ||||
-rw-r--r-- | applications/luci-olsr/luasrc/view/status-olsr/neighbors.htm | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/applications/luci-olsr/luasrc/view/status-olsr/legend.htm b/applications/luci-olsr/luasrc/view/status-olsr/legend.htm index 7575c122f3..e70cf2c48a 100644 --- a/applications/luci-olsr/luasrc/view/status-olsr/legend.htm +++ b/applications/luci-olsr/luasrc/view/status-olsr/legend.htm @@ -9,7 +9,7 @@ <li><strong><span style="color:#ff6600"><%:Orange%></span></strong>:<%:Still usable (4 < ETX < 10)%></li> <li><strong><span style="color:#bb3333"><%:Red%></span></strong>:<%:Bad (ETX > 10)%></li> </ul> - <li><strong>SNR: </strong><%:Signal Noise Ratio%></li> + <li><strong>SNR: </strong><%:Signal Noise Ratio in dB%></li> <ul> <li><strong><span style="color:#00cc00"><%:Green%></span></strong>:<%:Very good (SNR > 30)%></li> <li><strong><span style="color:#ffcb05"><%:Yellow%></span></strong>:<%:Good (30 > SNR > 20)%></li> diff --git a/applications/luci-olsr/luasrc/view/status-olsr/neighbors.htm b/applications/luci-olsr/luasrc/view/status-olsr/neighbors.htm index f3b374536e..176457d71c 100644 --- a/applications/luci-olsr/luasrc/view/status-olsr/neighbors.htm +++ b/applications/luci-olsr/luasrc/view/status-olsr/neighbors.htm @@ -40,9 +40,9 @@ if luci.http.formvalue("status") == "1" then lq = string.format("%.3f", link.linkQuality), nlq = string.format("%.3f",link.neighborLinkQuality), cost = string.format("%.3f", link.linkCost), - snr = string.format("%.3f", link.snr), - signal = string.format("%.3f", link.signal), - noise = string.format("%.3f", link.noise), + snr = link.snr, + signal = link.signal, + noise = link.noise, color = color, snr_color = snr_color, dfgcolor = defaultgw_color, @@ -161,7 +161,7 @@ end <td class="cbi-section-table-titles" style="background-color:<%=defaultgw_color%>"><%=string.format("%.3f", link.linkQuality)%></td> <td class="cbi-section-table-titles" style="background-color:<%=defaultgw_color%>"><%=string.format("%.3f", link.neighborLinkQuality)%></td> <td class="cbi-section-table-titles" style="background-color:<%=color%>"><%=string.format("%.3f", link.linkCost)%></td> - <td class="cbi-section-table-titles" style="background-color:<%=snr_color%>" title="Signal: <%=string.format("%.3f", link.signal)%> Noise: <%=string.format("%.3f", link.noise)%>"><%=string.format("%.3f", link.snr)%></td> + <td class="cbi-section-table-titles" style="background-color:<%=snr_color%>" title="Signal: <%=link.signal%> Noise: <%=link.noise%>"><%=link.snr%></td> </tr> <% i = ((i % 2) + 1) |