{% extends 'base.html.twig' %} {% block title %}Liste de tout les témoignages{% endblock %} {% block body %}

Liste de tout les témoignages

{% for testimonial in all_testimonies %}
{{ testimonial.name }}

{% for i in 1..5 %} {% if i <= testimonial.rating %} {% else %} {% endif %} {% endfor %}

{{ testimonial.message }}

{% else %}

Aucun témoignage à afficher.

{% endfor %}
{{ include('_partials/_footer.html.twig', { 'business_hours': business_hours }) }} {% endblock %}