aboutsummaryrefslogblamecommitdiff
path: root/cgi/templates/manage/ipdelete.html
blob: cd7591a97bd4135449cb152d6f5e5e8a1767eb19 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                                                                                                             

                                                                                                                                                                                                          






                                                                  




















                                                                                                               

            

         
                                             
<?py include('templates/base_top.html') ?>
<?py include('templates/manage/menu.html') ?>
<center>
  <div class="replymode">Eliminar por IP</div>
  <form action="#{cgi_url}manage/ipdelete" name="ipdeleteform" method="post">
    <table>
    <tr>
      <td class="postblock">Board(s)</td>
      <td>
        <input type="checkbox" name="board_all" id="all" value="1" /><label for="all" style="font-weight:bold">Todos los boards</label><hr />
        <?py for board in boards: ?>
          <input type="checkbox" name="board_#{board['dir']}" id="#{board['dir']}" value="1" /><label for="#{board['dir']}">#{board['name']} <span style="opacity:0.5;">(/#{board['dir']}/)</span></label>
          <br />
      <?py #endfor ?>
      </td>
    </tr>
    <tr>
      <td class="postblock">Dirección IP</td>
      <td><input type="text" name="ip" style="width:100%;" /></td>
    </tr>
    <tr>
      <td class="postblock">Desde hace<br /><span style="font-weight:normal;">(segundos)</span></td>
			<td>
				<input type="text" id="seconds" name="seconds" value="0" style="width:100%;" />
		    <br />
		    <div id="timelist">
		      <a href="#" data-secs="0">Siempre</a>
		      <a href="#" data-secs="3600">1h</a>
		      <a href="#" data-secs="21600">6h</a>
		      <a href="#" data-secs="43200">12h</a>
		      <a href="#" data-secs="86400">1d</a>
		      <a href="#" data-secs="259200">3d</a>
		      <a href="#" data-secs="604800">1w</a>
		      <a href="#" data-secs="2592000">30d</a>
		      <a href="#" data-secs="31536000">1y</a>
		    </div>
			</td>
		</tr>
    <tr>
      <td colspan="2"><input type="submit" style="width:100%;" value="Eliminar posts" /></td>
    </tr>
    </table>
  </form>
</center>
<hr />
<?py include('templates/base_bottom.html') ?>