{% extends 'account/base_account.html.twig' %} {% block title %}Mon Actu — {{ beneficiaire.prenom }} {{ beneficiaire.nom }}{% endblock %} {% block content %} {# ── STATS ── #}
{{ actus|filter(a => a.statut == 'publie')|length }}
Posts publiés
{{ stats.vues }}
Vues totales
{{ stats.clics }}
Clics CTA
{{ brouillons }}
Brouillons
{# ── LISTE ── #}
{% if actus is empty %}
📣

Aucun post encore

Publiez votre première actualité sur votre carte numérique.

Créer mon premier post →
{% else %}
{% for actu in actus %} {# Post #} {# Catégorie #} {# Stats #} {# Statut #} {# Date #} {# Actions #} {% endfor %}
Post Catégorie Stats Statut Date Actions
{% if actu.imageFilename %} {% else %}
📝
{% endif %}
{% if actu.epingle %}📌 {% endif %}{{ actu.titre }}
{{ actu.contenu|slice(0,60) }}{% if actu.contenu|length > 60 %}…{% endif %}
{{ actu.categorieLabel }}
{% if actu.isPublie() %} 👁 {{ actu.vues }} · 🖱 {{ actu.clics }} {% else %} {% endif %}
{% if actu.isPublie() %} ✅ Publié {% else %} 📝 Brouillon {% endif %} {{ actu.isPublie() ? actu.publishedAt|date('d/m/Y') : actu.createdAt|date('d/m/Y') }}
{# Publier un brouillon #} {% if not actu.isPublie() %}
{% else %}
{% endif %} {# Éditer #} ✏️ {# Supprimer #}
{{ actus|length }} post{{ actus|length > 1 ? 's' : '' }} au total
{% endif %}
{% endblock %}