{% for salon in salons %}
<a href="{{ path('rdv_category_selection', {salon: salon.id}) }}" class="salon-wrap">
{% if salon.site.filename %}
<img src="{{ asset('uploads/sites/' ~ salon.site.filename) }}" width="150" />
{% endif %}
{{ salon.name|salonName }}
</a>
{% else %}
<p>Aucun salon ne correspond à votre recherche</p>
{% endfor %}