diff options
Diffstat (limited to 'cgi/templates')
-rw-r--r-- | cgi/templates/base_top.html | 2 | ||||
-rw-r--r-- | cgi/templates/manage/delete.html | 40 | ||||
-rw-r--r-- | cgi/templates/manage/recent.html | 2 |
3 files changed, 33 insertions, 11 deletions
diff --git a/cgi/templates/base_top.html b/cgi/templates/base_top.html index d6a30e8..2dc079e 100644 --- a/cgi/templates/base_top.html +++ b/cgi/templates/base_top.html @@ -44,4 +44,4 @@ <img src="/static/img/default.png" width="500" height="81" /> <?py #endif ?> </div> - <hr width="90%" size="1" />
\ No newline at end of file + <hr width="90%" size="1" /> diff --git a/cgi/templates/manage/delete.html b/cgi/templates/manage/delete.html index 78c1c5e..6c26e3e 100644 --- a/cgi/templates/manage/delete.html +++ b/cgi/templates/manage/delete.html @@ -1,20 +1,42 @@ <?py include('templates/base_top.html') ?> <?py include('templates/manage/menu.html') ?> <center> -<div class="replymode">Eliminar Post</div> -<form action="#{cgi_url}manage/delete_confirmed/#{curboard}/#{postid}" method="get"> +<div class="replymode">Eliminando post</div> +<form action="#{cgi_url}manage/delete_confirmed/#{curboard['dir']}/#{post['id']}" method="get"> <?py if do_ban: ?> <input type="hidden" name="ban" value="true" /> <?py #endif ?> <p> - <b>Post #${postid} de /${curboard}/</b><br /> - <input id="a" type="checkbox" name="imageonly" value="true" /><label for="a">Eliminar sólo archivo</label><br /> - <input id="b" type="checkbox" name="perma" value="true" /><label for="b" style="font-weight:bold">Eliminar permanentemente</label><br /> + <b>Estás a punto de eliminar el siguiente post de <u>${curboard['name']}</u> (${curboard['dir']}):</b> + <br /> + <table class="managertable" style="max-width: 800px;"> + <tr> + <th>Nombre</th> + <td>${post['name']} ${post['tripcode']}</td> + <tr> + <th>Archivo</th> + <td> + <?py if post['thumb']: ?> + <img src="/${curboard['dir']}/mobile/${post['thumb']}" /> + <?py else: ?> + Sin archivo + <?py #endif ?> + </td> + </tr> + <tr> + <th>Mensaje</th> + <td>#{post['message']}</td> + </tr> + </table> + <br /> + <input id="a" type="checkbox" name="imageonly" value="true"#{'' if post['thumb'] else ' disabled'} /><label for="a">Eliminar sólo archivo</label><br /> + <input id="b" type="checkbox" name="perma" value="true" /><label for="b" style="font-weight:bold;">Eliminar permanentemente*</label> + <br /> + <br /> + <div style="max-width: 600px;"> + <b>*</b> Evitar eliminar <b>permanentemente</b> un post a menos que sea estrictamente necesario, al hacerlo se pierden todas las posibles referencias hechas hacia el post, sobre todo en el BBS (!). + </div> <br /> - <i>Nota: Por favor evitar eliminar <b>permanentemente</b> el post al menos que sea estrictamente necesario. - <br />Al eliminar permanentemente un post no queda en papelera y se rompen - las referencias que se pueden haber hecho hacia él, especialmente en los BBS.</i> - <br /><br /> <input type="submit" value="Eliminar" /> </p> </form> diff --git a/cgi/templates/manage/recent.html b/cgi/templates/manage/recent.html index 13e5b42..006da56 100644 --- a/cgi/templates/manage/recent.html +++ b/cgi/templates/manage/recent.html @@ -51,4 +51,4 @@ </table> </center> <hr /> -<?py include('templates/base_bottom.html') ?>
\ No newline at end of file +<?py include('templates/base_bottom.html') ?> |