summaryrefslogtreecommitdiffstats
path: root/provisioning-getdevicevalues-html.lsp
blob: 7404ca75ad7f2ad931f9b655caf1319ea9f6e54e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<% local form, viewlibrary, page_info = ... %>
<% require("viewfunctions") %>

<H1><%= html.html_escape(form.label) %></H1>
<%
displayitem(form.value.device_id)
displayitem(form.value.name)
displayitem(form.value.label)
displayitem(form.value.template)
%>

<H2>Parameter Values</H2>
<%
require("session")
val = session.serialize("values", form.value.values.value)
val = string.gsub(val, "[^\n]*%{%}\n", "")
print("<pre>"..val.."</pre>")
%>