diff options
Diffstat (limited to 'applications/luci-olsr/luasrc/view/status-olsr/routes.htm')
-rw-r--r-- | applications/luci-olsr/luasrc/view/status-olsr/routes.htm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/luci-olsr/luasrc/view/status-olsr/routes.htm b/applications/luci-olsr/luasrc/view/status-olsr/routes.htm index c8785b32c..6f5b61edb 100644 --- a/applications/luci-olsr/luasrc/view/status-olsr/routes.htm +++ b/applications/luci-olsr/luasrc/view/status-olsr/routes.htm @@ -15,7 +15,7 @@ $Id$ <%+header%> <h1><%:olsr_routes%></h1> <br /> -<table cellspacing="0" cellpadding="6"> +<table class="smalltext" cellspacing="0" cellpadding="6"> <tr> <th><%:destination%></th> <th><%:gateway%></th> @@ -42,7 +42,7 @@ $Id$ <td><%=route.Gateway%></td> <td><%=route.Interface%></td> <td><%=route.Metric%></td> -<td style="background-color:<%=color%>"><%=route.ETX%></td> +<td style="background-color:<%=color%>"><%=string.format("%%.3f", tonumber(route.ETX) or 0)%></td> </tr> <% end %> </table> |