{% extends 'articles/base_articles.html.twig' %} {% block title %}Détail de l'article{% endblock %} {% block body %}

📜 {{ article.title }}

← Retour à la liste
{% if is_granted('ARTICLE_EDIT', article) %} Modifier {{ include('articles/_delete_form.html.twig') }} {% endif %}

Statut :

{{ article.status.value|capitalize }}

Créé le :

{{ article.createdAt ? article.createdAt|date('d/m/Y H:i') : '–' }}

Mis à jour le :

{{ article.updatedAt ? article.updatedAt|date('d/m/Y H:i') : '–' }}

Contenu :

{% if article.content %}{{ article.content|raw }}{% endif %}
{% endblock %}