{% extends 'manage/general/master.twig' %} {% from 'macros.twig' import container_title, pagination %} {% from '_layout/input.twig' import input_csrf, input_text, input_checkbox, input_file, input_select %} {% block manage_content %}
{{ container_title(' IP Blacklist') }}
Here you can add or remove CIDR ranges to the IP Blacklist, these ranges are allowed to log into the site but cannot create accounts.
{% if notices|length > 0 %}
{% for notice in notices %} {{ notice }} {% endfor %}
{% endif %}
{{ input_csrf() }}
{{ input_csrf() }} {{ input_select('blacklist[remove][]', blacklist, null, 'ip_cidr', null, true, 'manage__blacklist__select', { 'multiple': true, 'size': 10, }) }}
{% endblock %}