{% extends "base.html.twig" %} {% block title %}Gestion {% endblock %} {% block body %} {{ include('user/partials/_infos_user.html.twig') }}

Gestion des Entreprises

{% if is_granted("ROLE_ADMIN") %} Ajouter {% endif %} {% for company in companies %} {% endfor %}
Id Nom de l'Entreprise Nom du contact Prénom du contact Téléphone du contact Email du contact Actions
{{ company.id }} {{ company.name }} {{ company.lastname }} {{ company.firstname }} {{ company.phone }} {{ company.email }} Plus d'informations Modifier
{% endblock %}