blob: cf736626159fd2cf7acd734f1c76b052cbc2670c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?
local view = ...
?><h1>Edit</h1><table border=0><?
local sct=""
for i,item in ipairs(view.list) do
if item.section ~= sct then
?><tr><td colspan='2'><h2><?= item.section ?></td></tr><?
sct = item.section
end
?><tr><td><?= html.link{
value = view.script .. view.prefix .. view.controller .. "/"
.. view.action .. "?id=" .. tostring(item.id),
label=item.name
}
?></td><td><?= item.descr
?></td></tr><?
end
?></table>
|