summaryrefslogtreecommitdiffstats
path: root/iptables-details-html.lsp
blob: 5310f6738dcd8ae50e09d057d55b7b8f1debf955 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<% local data, viewlibrary = ... 
%>

<% viewlibrary.dispatch_component("status") %>

<H2><%= html.html_escape(data.label) %></H2>
<% for i,tab in ipairs({"filter", "nat", "mangle"}) do %>
	<H3><%= html.html_escape(tab) %></H3>
	<DL><TABLE>
	<TR><TD><%= html.html_escape(data.value[tab].chains) %> Chains</TD></TR>
	<TR><TD><%= html.html_escape(data.value[tab].rules) %> Rules</TD></TR>
	</TABLE></DL>
<% end %>