blob: 6c26e3ec2e01d10cd1ef74fc2536a2e0185c4a3f (
plain) (
tree)
|
|
<?py include('templates/base_top.html') ?>
<?py include('templates/manage/menu.html') ?>
<center>
<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>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 />
<input type="submit" value="Eliminar" />
</p>
</form>
</center>
<hr />
<?py include('templates/base_bottom.html') ?>
|