aboutsummaryrefslogblamecommitdiff
path: root/cgi/templates/manage/search.html
blob: 6c2ec6f7de07d27525a4d9f3c23094f2d8aeb127 (plain) (tree)


























                                                                                               
<?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') ?>