summaryrefslogtreecommitdiffstats
path: root/lbu-read-html.lsp
diff options
context:
space:
mode:
Diffstat (limited to 'lbu-read-html.lsp')
-rw-r--r--lbu-read-html.lsp25
1 files changed, 0 insertions, 25 deletions
diff --git a/lbu-read-html.lsp b/lbu-read-html.lsp
deleted file mode 100644
index bfd986a..0000000
--- a/lbu-read-html.lsp
+++ /dev/null
@@ -1,25 +0,0 @@
-<? local view = ... ?>
-
-<h1>LBU</h1>
-
-<h2>Settings</h2>
-<? for i,item in ipairs(view.note or {}) do ?>
- <p class='error'><?= item.content ?></p>
-<? end ?>
-
-<? for i,item in ipairs(view.list) do ?>
- <DT><?= item.descr or '' ?></DT>
- <DD><?= html.link{
- value = view.script .. view.prefix .. view.controller .. "/"
- .. view.action .. "?id=" .. tostring(item.id),
- label=item.name
- } ?></DD>
-<? end ?>
-
-<h2>Functions</h2>
-<DT>Commit changes</DT>
-<DD><?= html.link{
- value = view.script .. view.prefix .. view.controller .. "/commit",
- label="commit" } ?></DD>
-
-<? -- vim: set filetype=lua : ?>