{% extends '@EasyAdmin/page/content.html.twig' %} {% block content_title %}Tableau de bord{% endblock %} {% block main %} {% if kpis.pending > 0 %}
{{ kpis.pending }} proposition(s) en attente de modération. Traiter
{% endif %}
{% set cards = [ { label: 'Utilisateurs', value: kpis.users, icon: 'fa-users' }, { label: 'Livres', value: kpis.works, icon: 'fa-book' }, { label: 'Critiques', value: kpis.reviews, icon: 'fa-comment' }, { label: 'Listes', value: kpis.lists, icon: 'fa-layer-group' }, { label: 'Propositions en attente', value: kpis.pending, icon: 'fa-inbox' }, ] %} {% for c in cards %}
{{ c.value }}
{{ c.label }}
{% endfor %}
Derniers inscrits
    {% for u in recentUsers %}
  • {% if u.avatarPath %} {% else %} {{ (u.displayName ?: u.userIdentifier)|first|upper }} {% endif %} {{ u.displayName ?: u.userIdentifier }} {{ u.createdAt ? u.createdAt|date('d/m') : '' }}
  • {% else %}
  • Aucun
  • {% endfor %}
Dernières critiques
    {% for r in recentReviews %}
  • {{ r.work.title }} {{ r.author.displayName ?? r.author.userIdentifier }}
    {{ r.body }}
  • {% else %}
  • Aucune
  • {% endfor %}
{% endblock %}