aboutsummaryrefslogtreecommitdiff
path: root/cgi/templates/manage/delete.html
blob: 6c26e3ec2e01d10cd1ef74fc2536a2e0185c4a3f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?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') ?>