summaryrefslogtreecommitdiffstats
path: root/provisioning-dumpdatabase-html.lsp
blob: 55001f455f9a2acf72f833367814a91240ce709b (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")
%>

<% if form.value.data then %>
<H1><%= html.html_escape(form.value.data.label) %></H1>
<DL>
<textarea name="filecontent">
<%= html.html_escape(form.value.data.value) %>
</textarea>
</DL>
<% end %>

<H1><%= html.html_escape(form.label) %></H1>
<%
	form.value.data = nil
	displayform(form, nil, nil, page_info, 2)
%>