aboutsummaryrefslogtreecommitdiff
path: root/cgi/templates/manage
diff options
context:
space:
mode:
Diffstat (limited to 'cgi/templates/manage')
-rw-r--r--cgi/templates/manage/recent.html55
1 files changed, 55 insertions, 0 deletions
diff --git a/cgi/templates/manage/recent.html b/cgi/templates/manage/recent.html
new file mode 100644
index 0000000..b490a57
--- /dev/null
+++ b/cgi/templates/manage/recent.html
@@ -0,0 +1,55 @@
+<?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>#{post['id']}</td>
+ <td>/#{post['dir']}/</td>
+ <td>
+ <?py if post['file']: ?><a href="/${post['dir']}/src/#{post['file']}" target="_blank"><img
+ src="/${post['dir']}/mobile/${post['thumb']}" /></a>
+ <?py #endif ?>
+ </td>
+ <td>
+ <div data-ts="#{post['timestamp']}">#{post['timestamp_formatted']}</div>
+ </td>
+ <td>
+ <div style="display: block; margin-bottom: 0.5em; font-weight: bold;">#{post['subject']} #{post['name']}
+ #{post['tripcode']}
+ </div>
+ <div style="display: block">#{post['message']}</div>
+ <?py if post['parentid'] != 0: ?>
+ <div style="display: block; margin-top: 0.5em; font-size: 0.75em;"><a
+ href="#{cgi_url}manage/mod/${post['dir']}?thread=#{post['parentid']}">Ver hilo completo</a>
+ </div>
+ <?py #endif ?>
+ </td>
+ <td>
+ <a href="#{cgi_url}manage/mod/ipshow?ip=#{post['ip']}">#{post['ip']}</a>
+ </td>
+ <td>
+ <a title="Eliminar mensaje" href="#{cgi_url}manage/mod/delete/#{post['dir']}/#{post['id']}"><img
+ src="/static/icons/comment_delete.png" /></a>
+ <a title="Banear" href="#{cgi_url}manage/ban?ip=#{post['ip']}"><img src="/static/icons/user_delete.png" /></a>
+ <a title="Eliminar y Banear" href="#{cgi_url}manage/mod/delete/#{post['dir']}/#{post['id']}?ban=true"><img
+ src="/static/icons/cross.png" /></a>
+ </td>
+ </tr>
+ <?py #endfor ?>
+ </tbody>
+ </table>
+</center>
+<hr />
+<?py include('templates/base_bottom.html') ?> \ No newline at end of file