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 | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/applications/luci-olsr/luasrc/view/status-olsr/routes.htm b/applications/luci-olsr/luasrc/view/status-olsr/routes.htm index 52bf101ccf..cad9c35884 100644 --- a/applications/luci-olsr/luasrc/view/status-olsr/routes.htm +++ b/applications/luci-olsr/luasrc/view/status-olsr/routes.htm @@ -40,7 +40,12 @@ $Id$ %> <tr> <td><%=route.Destination%></td> -<td><%=route["Gateway IP"]%></td> +<td> +<a href="http://<%=route["Gateway IP"]%>/cgi-bin-status.html"><%=route["Gateway IP"]%></a> +<% if route.Hostname then %> + / <a href="http://<%=route.Hostname%>/cgi-bin-status.html"><%=route.Hostname%></a> +<% end %> +</td> <td><%=route.Interface%></td> <td><%=route.Metric%></td> <td style="background-color:<%=color%>"><%=string.format("%.3f", tonumber(route.ETX) or 0)%></td> |