tracking_log template

This commit is contained in:
ichuang
2012-08-05 16:35:32 -04:00
parent b612517dde
commit 190f1f8f89

View File

@@ -0,0 +1,14 @@
<html>
<h1>Tracking Log</h1>
<table border="1"><tr><th>datetime</th><th>username</th><th>ipaddr</th><th>source</th><th>type</th></tr>
% for rec in records:
<tr>
<td>${rec.time}</td>
<td>${rec.username}</td>
<td>${rec.ip}</td>
<td>${rec.event_source}</td>
<td>${rec.event_type}</td>
</tr>
% endfor
</table>
</html>