2008-07-07 22:00:56 +00:00
|
|
|
<%#
|
|
|
|
LuCI - Lua Configuration Interface
|
|
|
|
Copyright 2008 Steven Barth <steven@midlink.org>
|
|
|
|
Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
$Id$
|
|
|
|
|
|
|
|
-%>
|
2008-05-08 16:14:49 +00:00
|
|
|
<%+header%>
|
2008-09-15 21:44:32 +00:00
|
|
|
<h1><%:olsrd_hna2%></h1>
|
2008-09-14 20:57:00 +00:00
|
|
|
<p><%:olsrd_hna_desc%></p>
|
2008-05-08 16:14:49 +00:00
|
|
|
<br />
|
2008-07-16 02:38:45 +00:00
|
|
|
<table class="smalltext" cellspacing="0" cellpadding="6">
|
2008-05-08 16:14:49 +00:00
|
|
|
<tr>
|
2008-09-14 20:57:00 +00:00
|
|
|
<th><%:olsrd_network%></th>
|
|
|
|
<th><%:olsrd_gateway%></th>
|
2008-05-08 16:14:49 +00:00
|
|
|
</tr>
|
|
|
|
<% for k, route in ipairs(routes) do %>
|
|
|
|
<tr>
|
2008-09-13 17:51:03 +00:00
|
|
|
<td><%=route.Destination%></td>
|
2008-05-08 16:14:49 +00:00
|
|
|
<td><a href="http://<%=route.Gateway%>"><%=route.Gateway%></a></td>
|
|
|
|
</tr>
|
|
|
|
<% end %>
|
|
|
|
</table>
|
|
|
|
<br />
|
2008-09-14 20:57:00 +00:00
|
|
|
<%+footer%>
|