{% extends 'layouts/authenticated.html.twig' %} {% block page_title %}{{ page_title }}{% endblock %} {% block content %}
Suivi et analyse des tentatives de connexion au système
| ID / Date | Utilisateur | Adresse IP | Localisation | Appareil | Statut | Actions |
|---|---|---|---|---|---|---|
|
#{{ attempt.id }}
{{ attempt.attemptedAt|date('d/m/Y H:i') }}
|
{{ attempt.email }}
{% if attempt.user %}
ID: {{ attempt.user.id }}
{% else %}
Utilisateur inconnu
{% endif %}
|
{{ attempt.ipAddress }}
|
{% if attempt.country %}
{{ attempt.country }}
{% else %}
N/A
{% endif %}
{% if attempt.city %}
{{ attempt.city }}
{% endif %}
|
{% if attempt.deviceType %}
{% if attempt.deviceType == 'desktop' %}
Desktop
{% elseif attempt.deviceType == 'mobile' %}
Mobile
{% elseif attempt.deviceType == 'tablet' %}
Tablette
{% endif %}
{% endif %}
{% if attempt.browser or attempt.os %}
{{ attempt.browser|default('') }} / {{ attempt.os|default('') }}
{% endif %}
|
{% if attempt.successful %}
Réussi
{% else %}
Échoué
{% if attempt.failureReason %}
{{ attempt.failureReason }}
{% endif %}
{% endif %}
|
Voir |
|
Aucune tentative de connexion trouvée |
||||||
Page {{ pagination.currentPageNumber }} sur {{ pagination.pageCount }} ({{ pagination.getTotalItemCount }} au total)