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

<h1><%= html.html_escape(form.label) %></h1>
<%
	htmlviewfunctions.displayform(form, nil, nil, page_info, 2)
%>
	
<h2>Options</h2>
<div class='item'><p class='left'></p>
<div class='right'>
<form action="<%= page_info.script .. page_info.prefix .. page_info.controller %>/editoptions" method="post">
<input type="hidden" name="param_id" value="<%= form.value.param_id.value %>">
<input type="submit" class="submit" value="Edit Options">
</form>
</div></div><!-- end .item -->