tracking_log template
This commit is contained in:
14
lms/templates/tracking_log.html
Normal file
14
lms/templates/tracking_log.html
Normal 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>
|
||||
Reference in New Issue
Block a user