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

{{ country }}

Liste des IPs uniques pour ce pays

Période : {% for value, label in {'7': '7j', '30': '30j', '90': '90j', 'all': 'Tout'} %} {{ label }} {% endfor %}
{# Tableau des IPs #}
{% for ip in pagination %} {% else %} {% endfor %}
Adresse IP Requêtes Dernière visite Suspectes Erreurs Statut Actions
{{ ip.ip_address }} {{ ip.request_count|number_format(0, ',', ' ') }} {{ ip.last_seen|date('d/m/Y H:i') }} {% if ip.suspicious_count > 0 %} {{ ip.suspicious_count }} {% else %} 0 {% endif %} {% if ip.error_count > 0 %} {{ ip.error_count }} {% else %} 0 {% endif %} {% if ip.is_blocked %} Bloquée {% else %} Active {% endif %} Examiner
Aucune IP trouvée pour ce pays.
{# Pagination #} {% if pagination.getTotalItemCount > pagination.getItemNumberPerPage %}
{{ knp_pagination_render(pagination) }}
{% endif %}
{% endblock %}