blob: 9b8848ce53815383861043f7b1908db71e037024 (
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>
|