blob: 6c2ec6f7de07d27525a4d9f3c23094f2d8aeb127 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<?py include('templates/base_top.html') ?>
<?py include('templates/manage/menu.html') ?>
<center>
<div class="replymode">Registro de búsqueda</div>
<table class="managertable">
<tr>
<th>ID</th>
<th>Fecha</th>
<th>Búsqueda</th>
<th>En</th>
<th>Resultados</th>
<th>Por</th>
</tr>
<?py for log in search: ?>
<tr>
<td>${log['id']}</td>
<td class="date" data-unix="${log['timestamp']}">${log['timestamp_formatted']}</td>
<td>${log['keyword']}</td>
<td>${"[A] " if log['archive'] else ""}${"Global" if log["ita"] == "" else log["ita"]}</td>
<td>${log['res']}</td>
<td><a href="#{cgi_url}manage/ipshow?ip=${log['ip']}">${log['ip']}</a></td>
</tr>
<?py #endfor ?>
</table>
</center>
<hr />
<?py include('templates/base_bottom.html') ?>
|