blob: 70c6e467848aef49a5fb8d0c4e6af52f09c83dd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<% local form, viewlibrary, page_info = ...
require("viewfunctions")
%>
<H1><%= html.html_escape(form.label) %></H1>
<%
form.value.device_id.readonly = "true"
form.value.name.readonly = "true"
form.value.label.readonly = "true"
displayform(form, nil, nil, page_info, 2)
%>
|