aboutsummaryrefslogtreecommitdiff
path: root/cgi/templates/manage/basural.html
diff options
context:
space:
mode:
authorLibravatar Choom 2023-01-26 23:33:18 -0300
committerLibravatar Choom 2023-01-27 00:49:00 -0300
commitdd0483ce21f95385c41495c88d3c84225e14b412 (patch)
tree7df2433330fde84123c7e044f36bf2da4635c168 /cgi/templates/manage/basural.html
parent868bc75baecb2e0a6abaf5329880e501516c2910 (diff)
downloadweabot-dd0483ce21f95385c41495c88d3c84225e14b412.tar.gz
weabot-dd0483ce21f95385c41495c88d3c84225e14b412.tar.xz
weabot-dd0483ce21f95385c41495c88d3c84225e14b412.zip
Tabla para basural
Diffstat (limited to 'cgi/templates/manage/basural.html')
-rw-r--r--cgi/templates/manage/basural.html30
1 files changed, 30 insertions, 0 deletions
diff --git a/cgi/templates/manage/basural.html b/cgi/templates/manage/basural.html
new file mode 100644
index 0000000..f086558
--- /dev/null
+++ b/cgi/templates/manage/basural.html
@@ -0,0 +1,30 @@
+<?py include('templates/base_top.html') ?>
+<?py include('templates/manage/menu.html') ?>
+<?py from tenjin.helpers.html import * ?>
+<center>
+<div class="replymode">Salón de la vergüenza ajena</div>
+
+<table>
+<tr>
+ <td>ID</td>
+ <td>Original</td>
+ <td>Board</td>
+ <td>Fecha</td>
+ <td>Mensaje</td>
+ <td></td>
+</tr>
+<?py for basura in basural: ?>
+<tr>
+ <td>#{basura['id']}</td>
+ <td>#{basura['origid']}</td>
+ <td>#{basura['board']}</td>
+ <td>#{basura['fecha']}</td>
+ <td>#{basura['message']}</td>
+ <td>[Eliminar]</td>
+</tr>
+<?py #endfor ?>
+</table>
+
+</center>
+<hr />
+<?py include('templates/base_bottom.html') ?>