diff options
Diffstat (limited to 'provisioning-edittemplate-html.lsp')
-rw-r--r-- | provisioning-edittemplate-html.lsp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/provisioning-edittemplate-html.lsp b/provisioning-edittemplate-html.lsp index 8e6d54c..ba02b4d 100644 --- a/provisioning-edittemplate-html.lsp +++ b/provisioning-edittemplate-html.lsp @@ -1,17 +1,17 @@ <% local form, viewlibrary, page_info = ... %> -<% require("viewfunctions") %> +<% require("htmlviewfunctions") %> <H1><%= html.html_escape(form.label) %></H1> <H2>Template Details</H2> <% form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action %> -<% displayformstart(form) %> +<% htmlviewfunctions.displayformstart(form) %> <% if page_info.action == "edittemplate" then form.value.filename.readonly = "true" end -displayformitem(form.value.filename, "filename") -displayformitem(form.value.label, "label") -displayformitem(form.value.seq, "seq") +htmlviewfunctions.displayformitem(form.value.filename, "filename") +htmlviewfunctions.displayformitem(form.value.label, "label") +htmlviewfunctions.displayformitem(form.value.seq, "seq") %> </DL> @@ -23,4 +23,4 @@ displayformitem(form.value.seq, "seq") <% if form.value.filecontent.errtxt then %><P CLASS='error'><%= string.gsub(html.html_escape(form.value.filecontent.errtxt), "\n", "<BR>") %></P><% end %> <% if form.value.filecontent.descr then %><P CLASS='descr'><%= string.gsub(html.html_escape(form.value.filecontent.descr), "\n", "<BR>") %></P><% end %> -<% displayformend(form) %> +<% htmlviewfunctions.displayformend(form) %> |