summaryrefslogtreecommitdiffstats
path: root/provisioning-editgroup-html.lsp
blob: 9b202db00927d2b399edd6ab59ce45292ebaf039 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<% local form, viewlibrary, page_info = ... 
require("htmlviewfunctions")
%>

<H1><%= html.html_escape(form.label) %></H1>
<%
	if page_info.action == "editgroup" then
		form.value.group_id.readonly = "true"
	else
		form.value.group_id.type = "hidden"
	end
	htmlviewfunctions.displayform(form, nil, nil, page_info, 2)
%>