{% extends 'layouts/authenticated.html.twig' %} {% block page_title %}{{ page_title }}{% endblock %} {% block content %}
{# En-tête #}

{{ page_title }}

Surveillance et gestion des IP bloquées

{# Statistiques principales #}
{# Total actif #}
Total Actif
{{ stats.active|default(0) }}
{# Temporaires #}
Temporaires
{{ stats.temporary|default(0) }}
{# Permanents #}
Permanents
{{ stats.permanent|default(0) }}
{# Aujourd'hui #}
Aujourd'hui
{{ stats.blocked_today|default(0) }}
{# Blocages récents #}

Blocages Récents

{% if recent_blocks is empty %}

Aucun blocage récent

{% else %}
{% for block in recent_blocks %} {% endfor %}
IP Type Pays Date Actions
{{ block.ipAddress }}
{% if block.isPermanent %} Permanent {% else %} Temporaire {% endif %} {{ block.country ?? 'N/A' }} {{ block.blockedAt|date('d/m/Y H:i') }} Voir
{% endif %}
{# Sidebar #}
{# Top Pays #}

Top 10 Pays

{% if top_countries is empty %}

Aucune donnée

{% else %}
{% for item in top_countries %}
{{ item.country ?? 'Inconnu' }}
{% set max_count = top_countries[0].blockCount %} {% set percentage = (item.blockCount / max_count * 100)|round %}
{{ item.blockCount }}
{% endfor %}
{% endif %}
{# Actions rapides #} {# Statistiques additionnelles #}

Statistiques

Cette semaine
{{ stats.blocked_this_week|default(0) }}
Ce mois
{{ stats.blocked_this_month|default(0) }}
Total (historique)
{{ stats.total|default(0) }}
Inactifs
{{ stats.inactive|default(0) }}
{% endblock %}