aboutsummaryrefslogblamecommitdiff
path: root/cgi/templates/manage/recyclebin.html
blob: bdc7e45b12ace113a3093e7a659fd813e8adc69c (plain) (tree)




















































                                                                                                                                                                                                                

                                                                                          
















                                                                                                                      
<?py include('templates/base_top.html') ?>
<?py include('templates/manage/menu.html') ?>
<?py from tenjin.helpers.html import * ?>
<center>
<div class="replymode">Papelera de Reciclaje</div>
<form name="boardForm" method="get" action="#{cgi_url}manage/recyclebin/0">
<table>
<tr>
  <td class="postblock">Eliminado por</td>
  <td>
  <input type="radio" id="type1" name="type" value="1"#{checked(type == 1)} /><label for="type1">Usuario</label>
  <input type="radio" id="type2" name="type" value="2"#{checked(type == 2)} /><label for="type2">Staff</label>
  <input type="radio" id="type0" name="type" value="0"#{checked(type == 0)} /><label for="type0">Ambos</label>
  </td>
</tr>
<tr>
  <td class="postblock">Board</td><td>
  <select name="board" style="width:100%;">
  <option value="all">Todos los boards</option>
<?py for board in boards: ?>
  <option value="#{board['dir']}"#{selected(board['checked'])}>#{board['dir']} - ${board['name']}</option>
<?py #endfor ?>
  </select>
 </td>
</tr>
<tr><td colspan="2"><input type="submit" style="width:100%;" value="Mostrar" /></td></tr>
</table>
</form>
<hr />
<?py if message: ?>
${message}
<hr />
<?py #endif ?>
<?py if not skip: ?>
<form name="deleteForm" method="post" action="#{cgi_url}manage/recyclebin/#{currentpage}">
  <?py if curboard: ?>
  <input type="hidden" name="board" value="#{curboard}" />
  <?py #endif ?>
  <table class="managertable">
  <tr>
    <th></th>
    <th></th>
    <th>ID</th>
    <th>Timestamp</th>
    <th>Board</th>
    <th>Tipo</th>
    <th>IP</th>
    <th>Mensaje</th>
  </tr>
  <?py for post in posts: ?>
  <tr>
    <td><a href="#{cgi_url}manage/recyclebin/#{currentpage}/delete/#{post['dir']}/#{post['id']}">X</a><br /><a href="#{cgi_url}manage/recyclebin/#{currentpage}/restore/#{post['dir']}/#{post['id']}">R</a></td>
    <td><input type="checkbox" name="!i#{post['dir']}/#{post['id']}" id="#{post['dir']}#{post['id']}" value="1" /><label for="#{post['dir']}#{post['id']}"></label></td>
    <td><a href="#{cgi_url}manage/mod/${post['dir']}/#{post['id']}">#{post['id']}</a></td>
    <td class="date">${post['timestamp_formatted']}</td>
    <td>${post['dir']}</td>
    <td>${post['IS_DELETED']}</td>
    <td>${post['ip']}</td>
    <td>#{post['message']}</td>
  </tr>
  <?py #endfor ?>
  <tr><td colspan="8" align="center"><input name="deleteall" type="submit" value="Eliminar seleccionados" /></td></tr>
  </table>
</form>
<hr />
<div style="font-size:larger">#{navigator}</div>
<?py else: ?>
  No hay posts.
<?py #endif ?>
</center>
<hr />
<?py include('templates/base_bottom.html') ?>