c622026d4818b41ca970301f358a30cbb22dd327
[project/luci.git] / modules / freifunk / luasrc / view / freifunk-olsr / topology.htm
1 <%+header%>
2 <h1><%:olsrtopo OLSR-Topologie%></h1>
3 <br />
4 <table cellspacing="0" cellpadding="6">
5 <tr>
6 <th><%:destination Ziel%></th>
7 <th><%:lasthop Letzter Router%></th>
8 <th>LQ</th>
9 <th>ILQ</th>
10 <th>ETX</th>
11 </tr>
12 <% for k, route in ipairs(routes) do %>
13 <tr>
14 <td><a href="http://<%=route["Destination IP"]%>"><%=route["Destination IP"]%></a></td>
15 <td><a href="http://<%=route["Last hop IP"]%>"><%=route["Last hop IP"]%></a></td>
16 <td><%=route.LQ%></td>
17 <td><%=route.ILQ%></td>
18 <td><%=route.ETX%></td>
19 </tr>
20 <% end %>
21 </table>
22 <br />
23 <%+footer%>