{% extends "base.html" %} {% block title %}Bannissements{% endblock %} {% block content %}

Bannissements {{ total }} entrée{{ 's' if total != 1 }}

{% if not groups %}

Aucune IP bannie dans global-blacklist.

{% else %}
{% for group in groups %} {% for entry in group.entries %} {% endfor %} {% endfor %}
IP / CIDR AS Opérateur Pays
{% if group.asn %}AS{{ group.asn }}{% else %}AS inconnu{% endif %} {% if group.name %} · {{ group.name }}{% endif %} {% if group.country %} [{{ group.country }}]{% endif %} {{ group.entries|length }} entrée{{ 's' if group.entries|length != 1 }}
{{ entry }}
{% endif %}
{% endblock %}