{% extends 'base.html.twig' %} {% block title %}Back office : Article index{% endblock %} {% block body %}

📜 Article Index

Retour au site
Créer un nouvel article
{% for article in articles %} {% else %} {% endfor %}
Id Titre Slug Contenu Créé le Mis à jour Statut Actions
{{ article.id }} {{ article.title }} {{ article.slug }} {{ article.content }} {{ article.createdAt ? article.createdAt|date('Y-m-d H:i') : '' }} {{ article.updatedAt ? article.updatedAt|date('Y-m-d H:i') : '' }} {{ article.status.value|capitalize }}   
Aucun article trouvé.
{% endblock %}