luci/modules/admin-core/luasrc/view/status-olsr/mid.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
321 B
HTML

<%+header%>
<h1><%:olsrmid OLSR-MID%></h1>
<br />
<table cellspacing="0" cellpadding="6">
<tr>
<th><%:node Knoten%></th>
<th><%:aliases Aliasse%></th>
</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%>