{% extends "layout.twig" %} {% block title %}Tableau de bord – Articles{% endblock %} {% block content %}
| Titre | Catégorie | Auteur | Créé le | Modifié le | Actions |
|---|---|---|---|---|---|
| {{ post.title }} | {% if post.categoryName %} {{ post.categoryName }} {% else %} — {% endif %} | {{ post.authorUsername ?? 'inconnu' }} | {{ post.createdAt|date("d/m/Y H:i") }} | {{ post.updatedAt|date("d/m/Y H:i") }} |
{% if searchQuery %}Aucun résultat pour « {{ searchQuery }} ».{% else %}Aucun article à gérer.{% endif %}
{% endif %} {% endblock %}