summaryrefslogtreecommitdiffstats
path: root/weblog-viewusagestats-html.lsp
blob: 706b86c4836300f12f716e705938a2883f81e2f4 (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
<% local data, viewlibrary, page_info, session = ... %>
<H1><%= html.html_escape(data.label) %></H1>
<TABLE>
	<TR style="background:#eee;font-weight:bold;">
		<TD style="padding-right:20px;white-space:nowrap;" class="header">Date</TD>
		<TD style="padding-right:20px;white-space:nowrap;" class="header">Source</TD>
		<TD style="padding-right:20px;white-space:nowrap;" class="header">Requests</TD>
		<TD style="white-space:nowrap;" WIDTH="90%" class="header">Blocks</TD>
	</TR>

<% for i,stat in ipairs(data.value) do %>
	<TR>
		<TD><%= html.html_escape(stat.date) %></TD>
		<TD><%= html.html_escape(stat.sourcename) %></TD>
		<TD><%= html.html_escape(stat.numrequest) %></TD>
		<TD><%= html.html_escape(stat.numblock) %></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 usage stats found</p>
<% end %>