templates/reservation/list_salons.html.twig line 1

Open in your IDE?
  1. {% for salon in salons %}
  2.     <a href="{{ path('rdv_category_selection', {salon: salon.id}) }}" class="salon-wrap">
  3.         {% if salon.site.filename %}
  4.             <img src="{{ asset('uploads/sites/' ~ salon.site.filename) }}" width="150" />
  5.         {% endif %}
  6.         {{ salon.name|salonName }}
  7.     </a>
  8. {% else %}
  9. <p>Aucun salon ne correspond à votre recherche</p>
  10. {% endfor %}