{% extends "redissentry/base.html" %} {% load adminmedia admin_list i18n %} {% block breadcrumb %}Blacklist{% endblock %} {% block content %}

RedisSentry Blacklist

Blocks by IP

{% if blacklistA %}
{% for ip, ttl in blacklistA %} {% endfor %}
IP addressTime leftAction
{{ ip }}{{ ttl }} remove
{% else %}

– empty –

{% endif %}

Blocks by Username

{% if blacklistB %}
{% for username, ttl in blacklistB %} {% endfor %}
UsernameTime leftAction
{{ username }}{{ ttl }} remove
{% else %}

– empty –

{% endif %}

Blocks of Whitelisted Users

{% if blacklistW %}
{% for ip, username, ttl in blacklistW %} {% endfor %}
ipusernamettl 
{{ ip }}{{ username }}{{ ttl }} remove
{% else %}

– empty –

{% endif %}
{% endblock %}