{% extends "layout.twig" %} {% block title %}Tableau de bord – Articles{% endblock %} {% block content %}

Gestion des articles

{% include 'partials/_admin_nav.twig' %}

+ Ajouter un article

{% if searchQuery %}

{% if totalPosts > 0 %} {{ totalPosts }} résultat{{ totalPosts > 1 ? 's' : '' }} pour « {{ searchQuery }} » {% else %} Aucun résultat pour « {{ searchQuery }} » {% endif %}

{% endif %} {% if categories is not empty %} {% endif %} {% if error %}
{{ error }}
{% endif %} {% if success %}
{{ success }}
{% endif %} {% if posts is not empty %} {% for post in posts %} {% endfor %}
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") }}
Éditer
{% include 'partials/_pagination.twig' with { pagination: pagination } %} {% else %}

{% if searchQuery %}Aucun résultat pour « {{ searchQuery }} ».{% else %}Aucun article à gérer.{% endif %}

{% endif %} {% endblock %}