{% extends 'base.html.twig' %} {% block title %}Statistiques d'activité{% endblock %} {% block page_title %}Statistiques d'activité{% endblock %} {% block body %}
{% 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 %}
{% 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 }}
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 }}