{% extends 'base.html.twig' %} {% block og_title %}Liste des entreprises{% endblock %} {% block og_description %}Liste des entreprises{% endblock %} {% block title %}{{ parent() }} | Entreprises{% endblock %} {% block body %}

result for All listing

Rating
Tags
Distance
Radius around selected destination km
{% for entreprise in results %}
Photo de l'entreprise {{ entreprise.nomEntreprise }}
Read more
{{ entreprise.secteurActivite.nomActivite }}

{{ entreprise.nomEntreprise }}

{{ entreprise.adresse }}

{{ entreprise.description|slice(0, 100) ~ ' ...' }}

    {% for statusEntreprise in closeOrOpen %} {% if (entreprise.id == statusEntreprise.id) %} {% if (statusEntreprise.status == "Ouvert") %}
  • {{ statusEntreprise.status }}
  • {% elseif (statusEntreprise.status == "Fermé") %}
  • {{ statusEntreprise.status }}
  • {% else %}
  • {{ statusEntreprise.status }}
  • {% endif %} {% endif %} {% endfor %}
{% endfor %}

Load more

{% endblock %}