* Added public webif pages:
[project/luci.git] / module / public-core / src / view / public_status / routes.htm
1 <%+header%>
2 <h1><%:routes Routen%></h1>
3
4 <br />
5 <table cellspacing="0" cellpadding="6" class="smalltext">
6 <tr>
7 <th><%:target Ziel%></th>
8 <th><%:netmask Netzmaske%></th>
9 <th><%:gateway Gateway%></th>
10 <th><%:metric Metrik%></th>
11 <th><%:iface Schnittstelle%></th>
12 </tr>
13 <% for i, r in pairs(ffluci.sys.net.routes()) do %>
14 <tr>
15 <td><%=ffluci.sys.net.hexip4(r.Destination)%></td>
16 <td><%=ffluci.sys.net.hexip4(r.Mask)%></td>
17 <td><%=ffluci.sys.net.hexip4(r.Gateway)%></td>
18 <td><%=r.Metric%></td>
19 <td><%=r.Iface%></td>
20 </tr>
21 <% end %>
22 </table>
23 <br />
24 <%+footer%>