diff options
Diffstat (limited to 'cgi/templates/manage/ipdelete.html')
-rw-r--r-- | cgi/templates/manage/ipdelete.html | 28 |
1 files changed, 25 insertions, 3 deletions
diff --git a/cgi/templates/manage/ipdelete.html b/cgi/templates/manage/ipdelete.html index 71c043a..cd7591a 100644 --- a/cgi/templates/manage/ipdelete.html +++ b/cgi/templates/manage/ipdelete.html @@ -9,7 +9,8 @@ <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 /> + <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> @@ -17,8 +18,29 @@ <td class="postblock">Dirección IP</td> <td><input type="text" name="ip" style="width:100%;" /></td> </tr> - <tr><td colspan="2"><input type="submit" style="width:100%;" value="Eliminar posts" /></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 /> +</center> +<hr /> <?py include('templates/base_bottom.html') ?> |