{% set typeMeta = {
'login': {'icon':'fa-sign-in-alt', 'badge':'bg-primary', 'label':'Connexion'},
'warning': {'icon':'fa-exclamation-triangle', 'badge':'bg-warning text-dark', 'label':'Alerte'},
'success': {'icon':'fa-check-circle', 'badge':'bg-success', 'label':'Succes'},
'error': {'icon':'fa-times-circle', 'badge':'bg-danger', 'label':'Erreur'},
'info': {'icon':'fa-info-circle', 'badge':'bg-info text-dark', 'label':'Info'}
} %}
{% for a in activities %}
{% set key = (a.type|default('info'))|lower %}
{% set meta = attribute(typeMeta, key)|default({
'icon':'fa-history',
'badge':'bg-secondary',
'label': (a.type ?: 'Activite')
}) %}
{{ a.createdAt ? a.createdAt|date('d/m/Y H:i') : '-' }}
{{ meta.label }}
{{ a.message ?: '-' }}
{% else %}
Aucune activite
{% endfor %}
Page {{ activityPage }} / {{ activityTotalPages }} ({{ activityTotal }} activités)
{% set prevPage = activityPage - 1 %}
{% set nextPage = activityPage + 1 %}
Précédent
Suivant