aboutsummaryrefslogtreecommitdiff
path: root/cgi/templates/manage/logs.html
blob: e11780a56dc4e1ca40d7364b62fb668fd161ed2a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?py include('templates/base_top.html') ?>
<?py include('templates/manage/menu.html') ?>
<center>
<div class="replymode">Registro</div>
<table class="managertable">
  <tr><th>Fecha</th><th>Staff</th><th>Acción</th></tr>
<?py for log in logs: ?>
	<tr>
    <td class="date" data-unix="${log['timestamp']}" style="white-space:nowrap;">${log['timestamp_formatted']}</td>
    <td>${log['staff']}</td>
    <td>${log['action']}</td>
  </tr>
<?py #endfor ?>
</table>
</center>
<hr />
<?py include('templates/base_bottom.html') ?>