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

IP Counters

{% if countersA %}
{% for ip, n, ttl in countersA %} {% endfor %}
IP addressFailed attemptsTime leftAction
{{ ip }} {{ n }} {{ ttl }} remove
{% else %}

– empty –

{% endif %}

IP Blacklist

{% if blacklistA %}
{% for ip, n, ttl in blacklistA %} {% endfor %}
IP addressBlocked attemptsTime leftAction
{{ ip }}{{ n }}{{ ttl }} remove
{% else %}

– empty –

{% endif %}

Username Counters

{% if countersB %}
{% for username, v, ttl in countersB %} {% endfor %}
UsernameFailed attempts per IPTime leftAction
{{ username }} {% for ip, n in v %}{{ ip }}: {{ n }}
{% endfor %}
{{ ttl }} remove
{% else %}

– empty –

{% endif %}

Username Blacklist

{% if blacklistB %}
{% for username, n, ttl in blacklistB %} {% endfor %}
UsernameBlocked attemptsTime leftAction
{{ username }}{{ n }}{{ ttl }} remove
{% else %}

– empty –

{% endif %}

Whitelist Counters

{% if countersW %}
{% for ip, username, n, ttl in countersW %} {% endfor %}
IP addressUsernameFailed attemptsTime leftAction
{{ ip }} {{ username }} {{ n }} {{ ttl }} remove
{% else %}

– empty –

{% endif %}

Whitelisted Users Blacklist

{% if blacklistW %}
{% for ip, username, n, ttl in blacklistW %} {% endfor %}
IP addressUsernameBlocked attemptsTime leftAction
{{ ip }}{{ username }}{{ n }}{{ ttl }} remove
{% else %}

– empty –

{% endif %}

Log file

{% if log %}
{{ log }}
{% else %}

– empty –

{% endif %}
{% endblock %}