summaryrefslogtreecommitdiffstats
path: root/weblog-viewactivitylog-html.lsp
blob: a272544d83d7fb23bbd78d522d6972d57e775898 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<% local data, viewlibrary, page_info, session = ... %>
<% require("viewfunctions") %>

<% local subdata, pagedata = paginate(data.value, page_info.clientdata, 100) %>

<H1><%= html.html_escape(data.label) %></H1>
<DL>
<% displaypagination(pagedata, page_info) %>
<TABLE>
	<TR class="header">
		<TD style="padding-right:20px;white-space:nowrap;" class="header">Date</TD>
		<TD style="white-space:nowrap;" WIDTH="90%" class="header">Message</TD>
	</TR>

<% for i,log in ipairs(subdata) do %>
	<TR>
		<TD><%= html.html_escape(string.gsub(log.logdatetime, "%..*", "")) %></TD>
		<TD><%= html.html_escape(log.msgtext) %></TD>
	</TR>
<% end %>
</TABLE>

<% if data.errtxt then %>
<p class='error'><%= html.html_escape(data.errtxt) %></p>
<% end %>
<% if #data.value == 0 then %>
<p>No history found</p>
<% end %>
</DL>