<aside class="col-12 border border-light bg-white p-2">
<article class="card mb-3">
<div class="card-header">
<img class="img-profil" src="{{ asset('uploads/images/' ~ userP.imageUser) }}"
alt="profil indispo" class="img-thumbnail" style="width: 50px; height: 50px; border-radius: 50%;" />
Email: <strong>{{userP.email}}</strong>
Nome: <strong>{{userP.lastName}}</strong>
Prenom: <strong>{{userP.firstName}}</strong>
Adresse: <strong>{{userP.address}}</strong>
Métier: <strong>{{userP.job}}</strong>
Tél: <strong>{{userP.phonePublic}}</strong>
Ville: <strong>{{userP.city}}</strong>
Pays: <strong>{{userP.country}}</strong>
<span>
{% set i = 0 %}
{% for statElem in allStatistiques %}
{% if userP.id == statElem.idElement and statElem.page == 'HOME_PROFIL_MEMBRE' %}
{% set i = i + 1 %}
{% endif %}
{% endfor %}
{% include '_partials/_compteur_vues.html.twig' %} {## COMPTEUR_VUES ##}
{# <span>10 abonnés</span> #}
{# {% include '_partials/_compteur_abonnes.html.twig' %} #} {## COMPTEUR_ABONNES ##}
</span>
</div>
</article>
<article class="card mb-3">
<div class="card-header">
Nos Offres disponibles:
<a class="btn btn-outline-dark btn-sm" href="{{ path('app_profile_home', {id: userP.id}) }}">Accueil</a>
<a class="btn btn-outline-dark btn-sm" href="{{ path('app_profile_showImmobiliers', {id: userP.id}) }}">Immobiliers</a>
<a class="btn btn-outline-dark btn-sm" href="{{ path('app_profile_showHebergements', {id: userP.id}) }}">Hébergements</a>
<a class="btn btn-outline-dark btn-sm" href="{{ path('app_profile_showEntreprises', {id: userP.id}) }}">Entreprises</a>
<a class="btn btn-outline-dark btn-sm" href="{{ path('app_profile_showProducts', {id: userP.id}) }}">Produits</a>
<a class="btn btn-outline-dark btn-sm" href="{{ path('app_profile_showProjects', {id: userP.id}) }}">Projets</a>
<a class="btn btn-outline-dark btn-sm" href="{{ path('app_profile_showPrestations', {id: userP.id}) }}">Pestations</a>
<a class="btn btn-outline-dark btn-sm" href="{{ path('app_profile_showAnnonces', {id: userP.id}) }}">Annonces</a>
<a class="btn btn-outline-dark btn-sm" href="{{ path('app_profile_showEmplois', {id: userP.id}) }}">Emplois</a>
<a class="btn btn-outline-dark btn-sm" href="{{ path('app_chomeurs_index') }}">CV</a>
<a class="btn btn-outline-dark btn-sm" href="{{ path('app_profile_showVideosList', {id: userP.id}) }}">Videos</a>
</div>
</article>
</aside>