blob: 1e72d88c824a01aaadd5919782eb230fae471f2a (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
<?py include('templates/base_top.html') ?>
<?py include('templates/manage/menu.html') ?>
<center>
<div class="replymode">Lista de posts recientes</div>
<table class="managertable">
<thead>
<th>ID</th>
<th>Board</th>
<th>Archivo</th>
<th>Timestamp</th>
<th>Mensaje</th>
<th>IP</th>
<th>Acciones</th>
</thead>
<tbody>
<?py for post in posts: ?>
<tr>
<td>#{posts['id']}</td>
<td>/#{posts['boardid']}/</td>
<td>#{posts['file']}</td>
<td>#{posts['timestamp']}</td>
<td>#{posts['message']}</td>
<td>
<a href="#{cgi_url}manage/mod/ipshow?ip=#{posts['ip']}">#{posts['ip']}</a>
</td>
<th>
<a title="Eliminar mensaje" href="#{cgi_url}manage/mod/delete/#{posts['boardid']}/#{posts['id']}"><img
src="/icons/comment_delete.png" /></a>
<a title="Banear" href="#{cgi_url}manage/ban?ip=#{posts['ip']}"><img
src="/static/icons/user_delete.png" /></a>
<a title="Eliminar y Banear"
href="#{cgi_url}manage/mod/delete/#{posts['boardid']}/#{posts['id']}?ban=true"><img
src="/static/icons/cross.png" /></a>
</th>
</tr>
<?py #endfor ?>
</tbody>
</table>
</center>
<hr />
<?py include('templates/base_bottom.html') ?>
|