luci/applications/luci-olsr/luasrc/view/status-olsr/mid.htm

17 lines
298 B
HTML
Raw Normal View History

2008-05-08 16:14:49 +00:00
<%+header%>
2008-06-09 10:10:29 +00:00
<h1><%:olsr_mid%></h1>
2008-05-08 16:14:49 +00:00
<br />
<table cellspacing="0" cellpadding="6">
<tr>
2008-06-09 10:10:29 +00:00
<th><%:node%></th>
<th><%:aliases%></th>
2008-05-08 16:14:49 +00:00
</tr>
<% for k, mid in ipairs(mids) do %>
<tr>
<td><a href="http://<%=mid.IP%>"><%=mid.IP%></a></td>
<td><%=mid.Aliases%></td>
</tr>
<% end %>
</table>
<br />
<%+footer%>