{% extends 'base.html.twig' %} {% block title %}Administration du Magazine - AEF{% endblock %} {% block body %}

Administration du Magazine

Retour Dashboard Nouvel Article

{{ stats.total_articles }}

Total articles

{{ stats.published_articles }}

Publiés

{{ stats.draft_articles }}

Brouillons

{{ stats.scheduled_articles }}

Programmés

{{ stats.total_views|number_format(0, ',', ' ') }}

Vues totales

{{ stats.categories_count }}

Catégories
{% if articles|length > 0 %}
{% endif %}
Articles du Magazine ({{ articles|length }})
{% if articles|length > 0 %}
{% for article in articles %} {% endfor %}
Article Auteur Catégorie Statut Publication Vues Actions
{% if article.featuredImage %} {{ article.title }} {% else %}
{% endif %}
{{ 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:
{{ article.scheduledFor|date('d/m/Y H:i') }}
{% else %} Non publié {% endif %}
{{ article.viewsCount|number_format(0, ',', ' ') }} {% if article.viewsCount > 1000 %} {% endif %}
{% if article.status == 'draft' %} {% elseif article.status == 'published' %} {% endif %}
{% if pagination %} {% endif %} {% else %}
Aucun article trouvé

Commencez par créer votre premier article de magazine.

Créer un article
{% endif %}
{% endblock %}