{% extends 'base.html.twig' %} {% block title %}Administration des Petites Annonces - AEF{% endblock %} {% block body %}

Administration des Petites Annonces

Retour Dashboard Nouvelle Annonce

{{ stats.total_annonces }}

Total annonces

{{ stats.active_annonces }}

Actives

{{ stats.pending_annonces }}

En attente

{{ stats.rejected_annonces }}

Rejetées

{{ stats.premium_annonces }}

Premium

{{ stats.expired_annonces }}

Expirées
{% if annonces|length > 0 %}
{% endif %}
Liste des Annonces ({{ annonces|length }})
{% if annonces|length > 0 %}
{% for annonce in annonces %} {% endfor %}
Annonce Auteur Catégorie Prix Statut Expiration Actions
{% if annonce.images|length > 0 %} {{ annonce.title }} {% else %}
{% endif %}
{{ annonce.title }}
{{ annonce.description|slice(0, 60) }}... {% if annonce.isPremium %} Premium {% endif %}
{% if annonce.member %}
{{ annonce.member.fullName }}
{{ annonce.member.email }} {% else %} Membre supprimé {% endif %}
{% if annonce.category %} {{ annonce.category.name }} {% else %} Non classé {% endif %} {% if annonce.price %} {{ annonce.price|number_format(0, ',', ' ') }}€ {% else %} Prix non spécifié {% endif %} {% set status_class = { 'active': 'bg-success', 'pending': 'bg-warning', 'rejected': 'bg-danger', 'expired': 'bg-secondary' } %} {{ annonce.status|trans }} {% if annonce.expiresAt %}
{{ annonce.expiresAt|date('d/m/Y') }} {% if annonce.expiresAt < date() %} (Expirée) {% elseif annonce.expiresAt < date('+7 days') %} (Bientôt) {% endif %}
{% else %} Permanente {% endif %}
{% if annonce.status == 'pending' %} {% endif %}
{% if pagination %} {% endif %} {% else %}
Aucune annonce trouvée

Les petites annonces apparaîtront ici une fois créées.

{% endif %}
{% endblock %}