tracking_log.html 496 Bytes
Newer Older
Nimisha Asthagiri committed
1
<%page expression_filter="h"/>
2 3
<%! from django.utils.translation import ugettext as _ %>

ichuang committed
4
<html>
5 6
<h1>${_('Tracking Log')}</h1>
<table border="1"><tr><th>${_('datetime')}</th><th>${_('username')}</th><th>${_('ipaddr')}</th><th>${_('source')}</th><th>${_('type')}</th></tr>
ichuang committed
7 8
% for rec in records:
    <tr>
9
    <td>${rec.dtstr}</td> 
ichuang committed
10 11 12 13 14 15 16
    <td>${rec.username}</td>  
    <td>${rec.ip}</td>  
    <td>${rec.event_source}</td>   
    <td>${rec.event_type}</td>   
    </tr>
% endfor
</table>    
Nimisha Asthagiri committed
17
</html>