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

<% 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>
	<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>
<% end %>