{% extends 'base.html.twig' %} {% block title %}Administration des Petites Annonces - AEF{% endblock %} {% block body %}
| Annonce | Auteur | Catégorie | Prix | Statut | Expiration | Actions | |
|---|---|---|---|---|---|---|---|
|
{% if annonce.images|length > 0 %}
{{ 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 %}
|
Les petites annonces apparaîtront ici une fois créées.