diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2009-07-10 22:02:30 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2009-07-10 22:02:30 +0000 |
commit | 75e8d0bf4b4ec4ce84aa429b7dae7c2e75bb733e (patch) | |
tree | e3c02dd9bdc888c82b6f4f9ff0ba238289ec0823 /modules/admin-full/luasrc/view | |
parent | 07c0f405f3341cdfa11a8437c592fec5ff699f81 (diff) |
modules/admin-full: reimplement conntrack page as template
Diffstat (limited to 'modules/admin-full/luasrc/view')
-rw-r--r-- | modules/admin-full/luasrc/view/admin_status/conntrack.htm | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/modules/admin-full/luasrc/view/admin_status/conntrack.htm b/modules/admin-full/luasrc/view/admin_status/conntrack.htm new file mode 100644 index 000000000..663117308 --- /dev/null +++ b/modules/admin-full/luasrc/view/admin_status/conntrack.htm @@ -0,0 +1,79 @@ +<%# +LuCI - Lua Configuration Interface +Copyright 2008-2009 Steven Barth <steven@midlink.org> +Copyright 2008-2009 Jo-Philipp Wich <xm@subsignal.org> + +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$ + +-%> + +<%- + require "bit" + require "luci.fs" + require "luci.sys" + require "luci.tools.webadmin" + + local style = true +-%> + +<%+header%> + +<div class="cbi-map" id="cbi-conntrack"> + <h2><a id="content" name="content"><%:a_n_conntrack%></a></h2> + <div class="cbi-map-descr"><%:a_n_conntrack_desc%></div> + + <fieldset class="cbi-section" id="cbi-table-table"> + <legend>ARP</legend> + <div class="cbi-section-node"> + <table class="cbi-section-table"> + <tr class="cbi-section-table-titles"> + <th class="cbi-section-table-cell"><%:ipaddress%></th> + <th class="cbi-section-table-cell"><%:macaddress%></th> + <th class="cbi-section-table-cell"><%:interface%></th> + </tr> + + <% luci.sys.net.arptable(function(e) %> + <tr class="cbi-section-table-row cbi-rowstyle-<%=(style and 1 or 2)%>"> + <td class="cbi-value-field"><%=e["IP address"]%></td> + <td class="cbi-value-field"><%=e["HW address"]%></td> + <td class="cbi-value-field"><%=e["Device"]%></td> + </tr> + <% style = not style; end) %> + </table> + </div> + </fieldset> + <br /> + + <fieldset class="cbi-section" id="cbi-table-table"> + <legend><%:a_n_conntrack%></legend> + <div class="cbi-section-node"> + <table class="cbi-section-table"> + <tr class="cbi-section-table-titles"> + <th class="cbi-section-table-cell"><%:network%></th> + <th class="cbi-section-table-cell"><%:protocol%></th> + <th class="cbi-section-table-cell"><%:source%></th> + <th class="cbi-section-table-cell"><%:destination%></th> + </tr> + + <% style = true; luci.sys.net.conntrack(function(c) %> + <tr class="cbi-section-table-row cbi-rowstyle-<%=(style and 1 or 2)%>"> + <td class="cbi-value-field"><%=c.layer3:upper()%></td> + <td class="cbi-value-field"><%=c.layer4:upper()%></td> + <td class="cbi-value-field"><%=c.src%></td> + <td class="cbi-value-field"><%=c.dst%></td> + </tr> + <% style = not style; end) %> + </table> + </div> + </fieldset> + <br /> +</div> + +<%+footer%> + |