{% extends 'base.html.twig' %} {% set navbar_is_transparent = false %} {% block title %}Mes annonces{% endblock %} {% block body %}

Mes annonces

Déposer une annonce
{% if ads is empty %}
Vous n’avez pas encore d’annonces.
{% else %}
{% for ad in ads %}

{{ ad.title }}

{% if ad.status %} {{ ad.status.value }} {% endif %} {% if ad.updatedAt %} {{ ad.updatedAt|date('d/m/Y H:i') }} {% endif %}

{{ ad.description|default('')|striptags|slice(0,120) ~ (ad.description is defined and ad.description|length > 120 ? '…' : '') }}

Voir public Modifier
{% endfor %}
{% endif %}
{% endblock %}