summaryrefslogtreecommitdiffstats
path: root/openvpn-startstop-html.lsp
blob: be08c769eb1286f635e6b07f1c069332ce1906fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<% local data, viewlibrary, page_info = ... %>
<%
--[[
io.write("<H1>DEBUGGING</H1><span style='color:red'><H2>DEBUG INFO: CFE</H2>")
io.write(html.cfe_unpack(data))
io.write("</span>")
--]]
%>
<H1>Management</H1>
<%
--[[
%>
<% if data.value.result then %>
<H2>Previous action result</H2>
<% if data.value.result.value ~= "" then %>
<P CLASS='descr'><%= string.gsub(html.html_escape(data.value.result.value), "\n", "<BR>") %></P>
<% end if data.value.result.errtxt then %>
<P CLASS='error'><%= string.gsub(html.html_escape(data.value.result.errtxt), "\n", "<BR>") %></P>
<% end end %>
<%
--]]
%>
<DL>
<DT>Managing process based on</DT>
<DD><%= data.service %>.conf</DD>
</DL>
<DL>
<form action="<%= html.html_escape(page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action) %>" method="POST">
<DT>Program control-panel</DT>
<DD>
<% for i,act in ipairs(data.value.actions.value) do %>
	<input class="submit" type="submit" name="action" value="<%= act %>">
<% end %>
<input class="hidden" type="hidden" name="service" value="<%= data.service %>">
</DD>
</form>
</DL>