{% extends 'base.html.twig' %} {% block title %}Administration du Magazine - AEF{% endblock %} {% block body %}
| Article | Auteur | Catégorie | Statut | Publication | Vues | Actions | |
|---|---|---|---|---|---|---|---|
|
{% if article.featuredImage %}
{{ article.title }}
{{ article.excerpt|slice(0, 80) }}...
{% if article.isFeatured %}
À la une
{% endif %}
{% if article.tags|length > 0 %}
{% for tag in article.tags|slice(0, 3) %}
#{{ tag }}
{% endfor %}
{% endif %}
|
{% if article.author %}
{{ article.author.fullName }}
{{ article.author.email }}
{% else %}
Auteur supprimé
{% endif %}
|
{% if article.category %} {{ article.category.name }} {% else %} Non classé {% endif %} | {% set status_class = { 'published': 'bg-success', 'draft': 'bg-warning', 'scheduled': 'bg-info', 'archived': 'bg-secondary' } %} {{ article.status|trans }} |
{% if article.publishedAt %}
{{ article.publishedAt|date('d/m/Y H:i') }}
{% elseif article.scheduledFor %}
Programmé pour:
{% else %}
Non publié
{% endif %}
{{ article.scheduledFor|date('d/m/Y H:i') }} |
{{ article.viewsCount|number_format(0, ',', ' ') }}
{% if article.viewsCount > 1000 %}
{% endif %}
|