aboutsummaryrefslogtreecommitdiff
path: root/cgi/templates/manage/news.html
diff options
context:
space:
mode:
authorLibravatar bai 2019-03-29 09:10:35 +0000
committerLibravatar bai 2019-03-29 09:10:35 +0000
commit429433200998613b1c955034f8a90c6ca2864f4c (patch)
treea2e5762d1fd5c46fac8a1d60a7f0cf52c537e91f /cgi/templates/manage/news.html
parent825474f137b80923754de6821146560f3dfca501 (diff)
downloadweabot-429433200998613b1c955034f8a90c6ca2864f4c.tar.gz
weabot-429433200998613b1c955034f8a90c6ca2864f4c.tar.xz
weabot-429433200998613b1c955034f8a90c6ca2864f4c.zip
Agregados archivos faltantes
Diffstat (limited to 'cgi/templates/manage/news.html')
-rw-r--r--cgi/templates/manage/news.html46
1 files changed, 46 insertions, 0 deletions
diff --git a/cgi/templates/manage/news.html b/cgi/templates/manage/news.html
new file mode 100644
index 0000000..33b8f49
--- /dev/null
+++ b/cgi/templates/manage/news.html
@@ -0,0 +1,46 @@
+<?py include('templates/base_top.html') ?>
+<?py include('templates/manage/menu.html') ?>
+<?py from tenjin.helpers.html import * ?>
+<center>
+<?py if action == 1: ?>
+<div class="replymode">Publicar noticia</div>
+<form action="#{cgi_url}manage/news/add?type=1" method="post">
+<?py elif action == 2: ?>
+<div class="replymode">Twitter</div>
+<form action="#{cgi_url}manage/news/add?type=2" method="post">
+<?py else: ?>
+<div class="replymode">Publicar mensaje entre staff</div>
+<form action="#{cgi_url}manage/newschannel/add" method="post">
+<?py #endif ?>
+<table>
+<?py if action != 2: ?>
+<tr><td class="postblock">Anónimo</td><td><input type="checkbox" name="anonymous" id="anon" value="1"#{checked(action != 0)} /><label for="anon"></label></td></tr>
+<tr><td class="postblock">Título</td><td><input type="text" name="title" style="width:100%;" /></td></tr>
+<?py #endif ?>
+<tr><td class="postblock">Cuerpo<br /><br /><small style="font-weight:normal">HTML: Usar<br />con cuidado</small></td><td><textarea cols="48" rows="5" name="message" style="width:100%;"></textarea></td></tr>
+<tr><td colspan="2"><input type="submit" name="submit" style="width:100%;" value="Publicar" /></td></tr>
+</table>
+</form>
+<?py if posts: ?>
+<hr />
+<table class="managertable">
+<tr><th>ID</th><th>Fecha</th>
+<?py if action != 2: ?><th>Título</th><?py #endif ?>
+<?py if action != 2: ?><th>Mensaje</th>
+<?py else: ?><th>Tweet</th>
+<?py #endif ?>
+<th></th></tr>
+<?py for post in posts: ?>
+<tr>
+<td style="text-align:center">#{post['id']}</td>
+<td>#{post['timestamp_formatted']}</td>
+<?py if action != 2: ?><td>#{post['title']}</td><?py #endif ?>
+<td>#{post['message']}</td>
+<td>[<a href="#{cgi_url}manage/news/delete/#{post['id']}?type=#{action}">Eliminar</a>]</td>
+</tr>
+<?py #endfor ?>
+</table>
+<?py #endif ?>
+</center>
+<hr />
+<?py include('templates/base_bottom.html') ?>