Files
edx-platform/lms/templates/tracking_log.html
2013-07-31 19:39:15 -04:00

16 lines
464 B
HTML

<%! from django.utils.translation import ugettext as _ %>
<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.dtstr}</td>
<td>${rec.username}</td>
<td>${rec.ip}</td>
<td>${rec.event_source}</td>
<td>${rec.event_type}</td>
</tr>
% endfor
</table>
</html>