templates/vehicule/index.html.twig line 1

  1. {% extends 'base.html.twig' %}
  2. {% block title %}228Deals Vehicules!{% endblock %}
  3. {% block stylesheets %}
  4. {% endblock %}
  5. {% block body %}
  6. Accueil
  7. {% if searchCategorie is defined and searchCategorie is not null%}
  8. {{ searchCategorie.libelle }}
  9. {% else %}
  10. Vehicules
  11. {% endif %}
  • {% if pubImages["Z-LF-IMG-VH"] is defined %}
  • {% else %}
  • {% endif %}
  • {% for i in lastVh %}
  • {% if i.typeoperation == "LOCATION" %}
  • A LOUER
  • {% else %}
  • EN VENTE
  • {% endif %}
  • {{ i.libelle }}

  • {{ i.ville.nom }}
  • {% if i.isNoprice == false %}
  • {{ i.prix|number_format(0,'.',' ') }} FCFA
  • {% else %}
  • Prix à la demande
  • {% endif %}
  • Publié le {{ i.pubDate| date('d/m/Y h:i') }}
  • {% endfor %}
  • Filtre de recherche






  • Marques
  • Les Récentes publications

  • {% for v in vehicules %}
  • {% if v.typeoperation == "LOCATION" %}
  • A LOUER
  • {% else %}
  • A VENDRE
  • {% endif %}
  • {{ v.libelle|length > 50 ? v.libelle|slice(0, 50) ~ '...' : v.libelle }}
  • {% if v.prix > 0%}
  • {{ v.prix|number_format(0,'.',' ') }} FCFA
  • {% else %}
  • Prix à la demande
  • {% endif %}
  • Publié le {{ v.pubDate| date('d/m/Y h:i') }}

  • {% endfor %}
  • {% endblock %}