{% extends 'base.html.twig' %} {% block title %}Statistiques d'activité{% endblock %} {% block page_title %}Statistiques d'activité{% endblock %} {% block body %}

Statistiques d'activité

{% if is_admin %} Aperçu global des activités du système {% else %} Aperçu de vos activités et celles de {{ current_user.teams|length > 1 ? 'vos équipes' : (current_user.teams|length == 1 ? 'votre équipe' : 'votre compte') }} {% endif %}

Répartition par type d'action

{% set total_actions = 0 %} {% for count in action_stats %} {% set total_actions = total_actions + count %} {% endfor %} {% for action, count in action_stats %} {% set percentage = total_actions > 0 ? (count / total_actions * 100)|round : 0 %}
{{ percentage }}%

{% if action == 'CREATE' %}Créations {% elseif action == 'UPDATE' %}Modifications {% elseif action == 'DELETE' %}Suppressions {% elseif action == 'LOGIN' %}Connexions {% elseif action == 'LOGOUT' %}Déconnexions {% elseif action == 'VIEW' %}Consultations {% else %}{{ action }} {% endif %}

{{ count }}

{% endfor %}

Activité des 30 derniers jours

{% set max_activity = 0 %} {% for date, count in daily_activity %} {% if count > max_activity %} {% set max_activity = count %} {% endif %} {% endfor %} {% for date, count in daily_activity %} {% set height = max_activity > 0 ? (count / max_activity * 100) : 0 %}
{{ date|date('d/m') }}
{{ date|date('d/m/Y') }}: {{ count }} activité{{ count > 1 ? 's' : '' }}
{% endfor %}
{{ max_activity }} {{ (max_activity * 0.75)|round }} {{ (max_activity * 0.5)|round }} {{ (max_activity * 0.25)|round }} 0

Activité d'aujourd'hui

{{ daily_activity['now'|date('Y-m-d')] ?? 0 }}

Cette semaine

{% set week_total = 0 %} {% for i in 0..6 %} {% set date = ('now'|date_modify('-' ~ i ~ ' days'))|date('Y-m-d') %} {% set week_total = week_total + (daily_activity[date] ?? 0) %} {% endfor %} {{ week_total }}

Ce mois

{% set month_total = 0 %} {% for date, count in daily_activity %} {% set month_total = month_total + count %} {% endfor %} {{ month_total }}

{% endblock %}