diff options
author | Mika Havela <mika.havela@gmail.com> | 2007-11-28 17:23:26 +0000 |
---|---|---|
committer | Mika Havela <mika.havela@gmail.com> | 2007-11-28 17:23:26 +0000 |
commit | f9975a98a1e3404c2f75ed093f8de47f89b339e5 (patch) | |
tree | b50c0c0a375067d72c10deb0ffac74a2336e0ed7 /shorewall-list-html.lsp | |
parent | 73bd0a6d99c0bdfc1db5432706a3aa577617b10c (diff) | |
download | acf-shorewall-f9975a98a1e3404c2f75ed093f8de47f89b339e5.tar.bz2 acf-shorewall-f9975a98a1e3404c2f75ed093f8de47f89b339e5.tar.xz |
Show files and their content starting to take shape
git-svn-id: svn://svn.alpinelinux.org/acf/shorewall/trunk@383 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'shorewall-list-html.lsp')
-rw-r--r-- | shorewall-list-html.lsp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/shorewall-list-html.lsp b/shorewall-list-html.lsp new file mode 100644 index 0000000..424349a --- /dev/null +++ b/shorewall-list-html.lsp @@ -0,0 +1,10 @@ +<? local view = ... ?> + +<h1>Firewall configuration</h1> + +<h2>EXISTING FILES</h2> + +<? for i = 1, table.maxn(view.filelist) do ?> + <dt><?= html.link{value = view.url .. "/edit?name=" .. view.filelist[i].name , label=view.filelist[i].name } ?></dt> + <dd><i>Last modified:</i> <?= view.filelist[i].filedetails.mtime ?></dd> +<? end ?> |