{% extends 'base/base_FRONT.html.twig' %} {% block all %}

Liste des voyage disponible



{% for v in voyages %}
{{v.titre}}
  • du {{v.datedebut|date("Y-m-d")}} jusqu a {{v.datefin|date("Y-m-d")}}
  • {{v.destination.ville ~ "," ~ v.destination.pays}}
  • {{v.prix}}

{{v.description|slice(0,15)}}...

voir detail
{% endfor %}
{% endblock %}