blob: 1bd73a2ea23c3a97a2a859f9255e24cc1ba7cd34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<% local form, viewlibrary, page_info = ... %>
<% require("viewfunctions") %>
<% --[[ DEBUG INFORMATION
io.write(html.cfe_unpack(form))
--]] %>
<H1><%= form.label %></H1>
<DL>
<% displayitem(form.value.status) %>
<% if form.value.status.errtxt then %>
<form action="<%= page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action %>" method="POST">
<DT></DT><DD><input class="submit" type="submit" name="<%= form.option %>" value="<%= form.option %>"></DD>
<% end %>
</DL>
|