blob: 9ea7b2238180cc7e09a6d0b88e0f116e03d7b4a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<? local view = ... ?>
<html>
<body>
<h1>Logfiles</h1>
<TABLE border=1>
<? for i = 1, table.maxn(view.logfile) do ?>
<TR <? if view.logfile[i].header then ?> class=grey <? end ?>>
<TD "width=55px"><?= view.logfile[i].delete ?></TD>
<TD "width=55px"><?= view.logfile[i].save ?></TD>
<TD "width=55px"><?= view.logfile[i].view ?></TD>
<TD "width=55px"><?= view.logfile[i].size ?></TD>
<TD><?= view.logfile[i].lastmod ?></TD>
<TD><?= view.logfile[i].name ?></TD>
</TR>
<? end ?>
</TABLE>
</body>
</html>
|