aboutsummaryrefslogtreecommitdiff
path: root/cgi/templates
diff options
context:
space:
mode:
Diffstat (limited to 'cgi/templates')
-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') ?>