2014-10-08 23:23:59 +02:00
< script src = 'main.js' > < / script >
< script src = 'js/jquery.min.js' > < / script >
< script src = 'js/mobile-style.js' > < / script >
< script src = 'js/strftime.min.js' > < / script >
< script src = 'js/longtable/longtable.js' > < / script >
< script src = 'js/mod/ban-list.js' > < / script >
< link rel = 'stylesheet' href = 'stylesheets/longtable/longtable.css' >
< link rel = 'stylesheet' href = 'stylesheets/mod/ban-list.css' >
< form action = "?/bans" method = "post" class = "banform" >
{% if token %}
< input type = "hidden" name = "token" value = "{{ token }}" >
{% endif %}
< div class = 'banlist-opts' >
< div class = 'checkboxes' >
{% if mod and mod.boards[0] != '*' %}
< label > < input type = "checkbox" id = "only_mine" > {% trans %}Show only bans from boards I moderate{% endtrans %}< / label >
{% endif %}
< label > < input type = "checkbox" id = "only_not_expired" > {% trans %}Show only active bans{% endtrans %}< / label >
< / div >
< div class = 'buttons' >
< input type = "text" id = "search" placeholder = "{% trans %}Search{% endtrans %}" >
{% if mod %}
2024-02-23 03:40:37 +01:00
< input type = "submit" name = "unban" id = "unban" onclick = "return confirm('Are you sure you want to unban the selected IPs?');" value = "{% trans 'Unban selected' %}" >
2014-10-08 23:23:59 +02:00
{% endif %}
< / div >
< br class = 'clear' >
< / div >
< table class = "mod" style = "width:100%" id = "banlist" >
2012-04-16 08:40:24 +02:00
< / table >
2014-10-08 23:23:59 +02:00
2012-04-16 08:40:24 +02:00
< / form >
2014-10-08 23:23:59 +02:00
{% if token_json %}
< script > $ ( function ( ) { banlist _init ( "{{ token_json }}" , { { boards } } ) ; } ) ; < / script >
{% else %}
< script > $ ( function ( ) { banlist _init ( "{{ uri_json }}" , { { boards } } , true ) ; } ) ; < / script >
2012-04-16 08:40:24 +02:00
{% endif %}