luci/modules/admin-core/luasrc/view/status-olsr/hna.htm
Steven Barth 561b0cfaa3 * Moved Freifunk status pages to admin-core and linked them in Freifunk
* luci/web: Added assign() to dispatcher to reference foreign nodes in the dispatching tree
2008-06-02 20:16:05 +00:00

17 lines
No EOL
365 B
HTML

<%+header%>
<h1><%:olsrhna OLSR-HNA%></h1>
<br />
<table cellspacing="0" cellpadding="6">
<tr>
<th><%:destination Ziel%></th>
<th><%:gateway Gateway%></th>
</tr>
<% for k, route in ipairs(routes) do %>
<tr>
<td><%=route.Network%>/<%=route.Netmask%></td>
<td><a href="http://<%=route.Gateway%>"><%=route.Gateway%></a></td>
</tr>
<% end %>
</table>
<br />
<%+footer%>