blob: c20b798becc513f56024ffbdc0022c3efb1c55b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<% local view = ... %>
<% require("htmlviewfunctions") %>
<H1>SYSTEM INFO</H1>
<DL>
<%
htmlviewfunctions.displayitem(view.value.filename)
htmlviewfunctions.displayitem(view.value.ipaddr)
htmlviewfunctions.displayitem(view.value.iproute)
if view.value.iptunnel.value ~= "" then
htmlviewfunctions.displayitem(view.value.iptunnel)
end
%>
</DL>
|