{% extends 'base.html.twig' %}
{% block stylesheets %} {{ parent() }}
<link rel="stylesheet" href="{{ asset('build/css/annuaires/repreneurs/repreneurs_recherche.css') }}">
{% endblock %}
{% block body %}
{% include 'assets/assets_vuejs.html.twig' %}
<!-- Menu -->
{{ render_esi(controller(
'App\\Controller\\CoreController::menu',
{ "lang": lang,
"currentRoute":currentRoute,
"codePays": codePaysWithUnderScore }
)) | spaceless }}
<!-- Menu -->
<!-- Publicite -->
{% include 'includes/publicite.html.twig' %}
<!-- Publicite -->
<div class="container" id="app">
<div class="row">
<!--COLONNE GAUCHE -->
{% include 'includes/colonne_gauche_cv_repreneurs.html.twig' %}
<!--FIN COLONNE GAUCHE -->
<!--COLONNE DROITE -->
<div class="col-12 col-lg-9 bkg_blanc">
<!-- ARIANE -->
<nav aria-label="breadcrumb" class="d-none d-sm-block">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="{{ path('index',{'codePays':codePays}) }}">{{ translate("accueil",lang,"","M") | raw }}</a></li>
<li class="breadcrumb-item"><a href="{{ path('vendre_entreprise_annonces_acquisition_entreprise',{'codePays':codePaysWithUnderScore}) }}">{{ translate("vendre une entreprise",lang,"","M") | raw }}</a></li>
{% if idLocalisation and not idSecteurActivite %}
<li class="breadcrumb-item"><a href="{{ path('vendre_entreprise_resultats_cv_repreneur', {'codePays' : codePaysWithUnderScore}) }}" title="{{ translate("CV de repreneurs",lang,"","M") | raw }}">{{ translate("CV de repreneurs",lang,"","M") | raw }}</a></li>
{% for index, localisation in localisations %}
{% if index == 0 %}
{% set type_loc = "p" %}
{% elseif index == 1 %}
{% set type_loc = "r" %}
{% else %}
{% set type_loc = "d" %}
{% endif %}
{% if localisation != localisations|last %}
{% set arrayVarsTrans = {"prefixe": localisation.prefixe, "nom_localisation" : localisation.nom_localisation } %}
<li class="breadcrumb-item">
<a href="{{ path('vendre_entreprise_cv_repreneur_localisation', {'slug': localisation.nom_localisation|slugify, 'type': type_loc, 'idLocalisation': localisation.id_localisation, 'codePays': codePaysWithUnderScore}) }}"
title="{{ translate("CV de repreneurs %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
{{ localisation.nom_localisation }}
</a>
</li>
{% else %}
<li class="breadcrumb-item active" aria-current="page">{{ localisation.nom_localisation }}</li>
{% endif %}
{% endfor %}
{% elseif idSecteurActivite and not idLocalisation %}
<li class="breadcrumb-item"><a href="{{ path('vendre_entreprise_resultats_cv_repreneur', {'codePays' : codePaysWithUnderScore}) }}" title="{{ translate("CV de repreneurs",lang,"","M") | raw }}">{{ translate("CV de repreneurs",lang,"","M") | raw }}</a></li>
{% for index, secteurActivite in secteurActivites %}
{% if secteurActivite != secteurActivites|last %}
{% set arrayVarsTrans = {"nomPourTitle": secteurActivite.nomPourTitle|lower } %}
<li class="breadcrumb-item">
<a href="{{ path('vendre_entreprise_cv_repreneur_secteur_activite', {'slug': secteurActivite.nomSecteurActivite|slugify, 'idSecteurActivite': secteurActivite.idSecteurActivite, 'codePays': codePaysWithUnderScore}) }}"
title="{{ translate("CV de repreneurs %$nomPourTitle%$",lang,"","M", "", arrayVarsTrans) | raw }}">
{{ secteurActivite.nomSecteurActivite }}
</a>
</li>
{% else %}
<li class="breadcrumb-item active" aria-current="page">{{ secteurActivite.nomSecteurActivite }}</li>
{% endif %}
{% endfor %}
{% elseif idSecteurActivite and idLocalisation %}
<li class="breadcrumb-item"><a href="{{ path('vendre_entreprise_resultats_cv_repreneur', {'codePays' : codePaysWithUnderScore}) }}" title="{{ translate("CV de repreneurs",lang,"","M") | raw }}">{{ translate("CV de repreneurs",lang,"","M") | raw }}</a></li>
{% for index, secteurActivite in secteurActivites %}
{% set arrayVarsTrans = {"nomPourTitle": secteurActivite.nomPourTitle|lower } %}
<li class="breadcrumb-item">
<a href="{{ path('vendre_entreprise_cv_repreneur_secteur_activite', {'slug': secteurActivite.nomSecteurActivite|slugify, 'idSecteurActivite': secteurActivite.idSecteurActivite, 'codePays': codePaysWithUnderScore}) }}"
title="{{ translate("CV de repreneurs %$nomPourTitle%$",lang,"","M", "", arrayVarsTrans) | raw }}">
{{ secteurActivite.nomSecteurActivite }}
</a>
</li>
{% endfor %}
{% for index, localisation in localisations %}
{% if index == 0 %}
{% set type_loc = "p" %}
{% elseif index == 1 %}
{% set type_loc = "r" %}
{% else %}
{% set type_loc = "d" %}
{% endif %}
{% if localisation != localisations|last %}
{% set arrayVarsTrans = {"prefixe": localisation.prefixe, "nom_localisation" : localisation.nom_localisation, "nomPourTitle": secteurActivites|last.nomPourTitle|lower } %}
<li class="breadcrumb-item">
<a href="{{ path('vendre_entreprise_cv_repreneur_croise', {'nomLocalisation': localisation.nom_localisation|slugify, 'nomSecteurActivite': secteurActivites|last.nomSecteurActivite|slugify, 'type': type_loc, 'idLocalisation': localisation.id_localisation, 'idSecteurActivite': secteurActivites|last.idSecteurActivite, 'codePays': codePaysWithUnderScore}) }}"
title="{{ translate("CV de repreneurs %$nomPourTitle%$ %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
{{ localisation.nom_localisation }}
</a>
</li>
{% else %}
<li class="breadcrumb-item active" aria-current="page">{{ localisation.nom_localisation }}</li>
{% endif %}
{% endfor %}
{% else %}
<li class="breadcrumb-item active" aria-current="page">{{ translate("CV de repreneurs",lang,"","M") | raw }}</li>
{% endif %}
</ol>
</nav>
<!-- FIN ARIANE -->
{% if app.session.flashbag.peek('error')|length > 0 %}
<div class="alert alert-danger" role="alert">
{% for message in app.flashes('error') %}
{{ message }}<br>
{% endfor %}
</div>
{% endif %}
{% if app.session.flashbag.peek('success')|length > 0 %}
<div class="alert alert-success" role="alert">
{% for message in app.flashes('success') %}
- {{ message }}<br>
{% endfor %}
</div>
{% endif %}
{% if idLocalisation or idSecteurActivite %}
<div class="row mt-4">
<div class="col-12 mb-1 ml-3 mt-3">
<h1 class="vert fs2">{{ translate("CV de repreneurs",lang,"","M") | raw }} -
{% if idLocalisation and not idSecteurActivite %}
{{ localisations|last.nom_localisation }} {% if noms_ville %}({{ noms_ville }}...){% endif %}
{% elseif idSecteurActivite and not idLocalisation %}
{{ secteurActivites|last.nomSecteurActivite }}
{% elseif idSecteurActivite and idLocalisation %}
{{ secteurActivites|last.nomSecteurActivite }} {{ localisations|last.prefixe }} {{ localisations|last.nom_localisation }}
{% endif %}
</h1>
</div>
</div>
{% endif %}
{% if idLocalisation and not idSecteurActivite %}
<div class="row">
<div class="col-12">
<div class="card no_shadow mb-3 card-ie">
<div class="card-body">
<div class="row">
<div class="col-12 mt-1">
<div class="float-left">
{% if prev_localisation %}
{% set arrayVarsTrans = {"prefixe": prev_localisation.prefixe, "nom_localisation" : prev_localisation.nom_localisation } %}
<a href="{{ path('vendre_entreprise_cv_repreneur_localisation', {'slug': prev_localisation.nom_localisation|slugify, 'type': prev_localisation.type, 'idLocalisation': prev_localisation.id_localisation, 'codePays': codePaysWithUnderScore}) }}" title="{{ translate("CV de repreneurs %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
<i class="fas fa-arrow-circle-up fa-2x vert"></i>
</a>
{% else %}
<i class="fas fa-arrow-circle-up fa-2x vert"></i>
{% endif %}
</div>
<div class="lh18 ml-5">
<strong class="vert">{{ localisations|last.nom_localisation }} ({{ nb_cvs }})</strong>
</div>
</div>
{% set nb_elements = sous_localisations_numbers | length %}
{% if nb_elements > 0 and nb_elements <= 5 %}
<div class="col-12 pt-2 mt-3">
<ul class="cat_regions">
{% for element in sous_localisations_numbers %}
{% set arrayVarsTrans = {"prefixe": element.prefixe, "nom_localisation" : element.nom_localisation } %}
<li>
{% if element.nb_cvs > 0 %}
<a href="{{ path('vendre_entreprise_cv_repreneur_localisation', {'slug' : element.nom_localisation|slugify, 'idLocalisation' : element.id_localisation, 'type' : element.type, 'codePays' : codePaysWithUnderScore }) }}" title="{{ translate("CV de repreneurs %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
{{ element.nom_localisation }} ({{ element.nb_cvs }})
</a>
{% else %}
<span class="disabled-link">{{ element.nom_localisation }} ({{ element.nb_cvs }})</span>
{% endif %}
</li>
{% endfor %}
</ul>
</div>
{% elseif nb_elements > 5 %}
{% set half = ((sous_localisations_numbers | length) / 2)| round(0, 'ceil') %}
<div class="col-6 pt-2 mt-3">
<ul class="cat_regions">
{% for index, element in sous_localisations_numbers %}
{% set arrayVarsTrans = {"prefixe": element.prefixe, "nom_localisation" : element.nom_localisation } %}
{% if index < half %}
<li>
{% if element.nb_cvs > 0 %}
<a href="{{ path('vendre_entreprise_cv_repreneur_localisation', {'slug' : element.nom_localisation|slugify, 'idLocalisation' : element.id_localisation, 'type' : element.type, 'codePays' : codePaysWithUnderScore }) }}" title="{{ translate("CV de repreneurs %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
{{ element.nom_localisation }} ({{ element.nb_cvs }})
</a>
{% else %}
<span class="disabled-link">{{ element.nom_localisation }} ({{ element.nb_cvs }})</span>
{% endif %}
</li>
{% endif %}
{% endfor %}
</ul>
</div>
<div class="col-6 pt-2 mt-3">
<ul class="cat_regions">
{% for index, element in sous_localisations_numbers %}
{% set arrayVarsTrans = {"prefixe": element.prefixe, "nom_localisation" : element.nom_localisation } %}
{% if index >= half %}
<li>
{% if element.nb_cvs > 0 %}
<a href="{{ path('vendre_entreprise_cv_repreneur_localisation', {'slug' : element.nom_localisation|slugify, 'idLocalisation' : element.id_localisation, 'type' : element.type, 'codePays' : codePaysWithUnderScore }) }}" title="{{ translate("CV de repreneurs %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
{{ element.nom_localisation }} ({{ element.nb_cvs }})
</a>
{% else %}
<span class="disabled-link">{{ element.nom_localisation }} ({{ element.nb_cvs }})</span>
{% endif %}
</li>
{% endif %}
{% endfor %}
</ul>
</div>
{% endif %}
</div>
</div>
</div>
</div>
</div>
{% elseif idSecteurActivite and not idLocalisation %}
<div class="row">
<div class="col-12">
<div class="card no_shadow mb-3 card-ie">
<div class="card-body">
<div class="row">
<div class="col-12 mt-1">
<div class="float-left">
{% if prev_secteur %}
{% set arrayVarsTrans = {"nomPourTitle": prev_secteur.nomPourTitle|lower } %}
<a href="{{ path('vendre_entreprise_cv_repreneur_secteur_activite', {'slug': prev_secteur.nomSecteurActivite|slugify, 'idSecteurActivite': prev_secteur.idSecteurActivite, 'codePays': codePaysWithUnderScore}) }}" title="{{ translate("CV de repreneurs %$nomPourTitle%$",lang,"","M", "", arrayVarsTrans) | raw }}">
<i class="fas fa-arrow-circle-up fa-2x vert"></i>
</a>
{% else %}
<a href="{{ path('vendre_entreprise_annonces_acquisition_entreprise', {'codePays': codePaysWithUnderScore }) }}" title="{{ translate("toutes les opportunités", lang, "", "M") }}">
<i class="fas fa-arrow-circle-up fa-2x vert"></i>
</a>
{% endif %}
</div>
<div class="lh18 ml-5">
<strong class="vert">{{ secteurActivites|last.nomSecteurActivite }} ({{ nb_cvs }})</strong>
</div>
</div>
{% set nb_elements = sous_secteurs_numbers | length %}
{% if nb_elements > 0 and nb_elements <= 5 %}
<div class="col-12 pt-2 mt-3">
<ul class="cat_regions">
{% for element in sous_secteurs_numbers %}
{% set arrayVarsTrans = {"nomPourTitle": element.nomPourTitle|lower } %}
<li>
{% if element.nb_cvs > 0 %}
<a href="{{ path('vendre_entreprise_cv_repreneur_secteur_activite', {'slug' : element.nomSecteurActivite|slugify, 'idSecteurActivite' : element.idSecteurActivite, 'codePays' : codePaysWithUnderScore }) }}"
title="{{ translate("CV de repreneurs %$nomPourTitle%$",lang,"","M", "", arrayVarsTrans) | raw }}">
{{ element.nomSecteurActivite }} ({{ element.nb_cvs }})
</a>
{% else %}
<span class="disabled-link">{{ element.nomSecteurActivite }} ({{ element.nb_cvs }})</span>
{% endif %}
</li>
{% endfor %}
</ul>
</div>
{% elseif nb_elements > 5 %}
{% set half = ((sous_secteurs_numbers | length) / 2)| round(0, 'ceil') %}
<div class="col-6 pt-2 mt-3">
<ul class="cat_regions">
{% for index, element in sous_secteurs_numbers %}
{% set arrayVarsTrans = {"nomPourTitle": element.nomPourTitle|lower } %}
{% if index < half %}
<li>
{% if element.nb_cvs > 0 %}
<a href="{{ path('vendre_entreprise_cv_repreneur_secteur_activite', {'slug' : element.nomSecteurActivite|slugify, 'idSecteurActivite' : element.idSecteurActivite, 'codePays' : codePaysWithUnderScore }) }}"
title="{{ translate("CV de repreneurs %$nomPourTitle%$",lang,"","M", "", arrayVarsTrans) | raw }}">
{{ element.nomSecteurActivite }} ({{ element.nb_cvs }})
</a>
{% else %}
<span class="disabled-link">{{ element.nomSecteurActivite }} ({{ element.nb_cvs }})</span>
{% endif %}
</li>
{% endif %}
{% endfor %}
</ul>
</div>
<div class="col-6 pt-2 mt-3">
<ul class="cat_regions">
{% for index, element in sous_secteurs_numbers %}
{% set arrayVarsTrans = {"nomPourTitle": element.nomPourTitle|lower } %}
{% if index >= half %}
<li>
{% if element.nb_cvs > 0 %}
<a href="{{ path('vendre_entreprise_cv_repreneur_secteur_activite', {'slug' : element.nomSecteurActivite|slugify, 'idSecteurActivite' : element.idSecteurActivite, 'codePays' : codePaysWithUnderScore }) }}"
title="{{ translate("CV de repreneurs %$nomPourTitle%$",lang,"","M", "", arrayVarsTrans) | raw }}">
{{ element.nomSecteurActivite }} ({{ element.nb_cvs }})
</a>
{% else %}
<span class="disabled-link">{{ element.nomSecteurActivite }} ({{ element.nb_cvs }})</span>
{% endif %}
</li>
{% endif %}
{% endfor %}
</ul>
</div>
{% endif %}
</div>
</div>
</div>
</div>
</div>
{% elseif idSecteurActivite and idLocalisation %}
<div class="row">
<div class="col-12">
<div class="card no_shadow mb-3 card-ie">
<div class="card-body">
<div class="row">
<div class="col-12 mt-1 mb-3">
<div class="float-left">
{% if prev_localisation %}
{% set arrayVarsTrans = {"prefixe": prev_localisation.prefixe, "nom_localisation" : prev_localisation.nom_localisation, "nomPourTitle": secteurActivites|last.nomPourTitle|lower } %}
<a href="{{ path('vendre_entreprise_cv_repreneur_croise', {'nomLocalisation': prev_localisation.nom_localisation|slugify, 'nomSecteurActivite' : secteurActivites|last.nomSecteurActivite|slugify, 'type': prev_localisation.type, 'idLocalisation': prev_localisation.id_localisation, 'idSecteurActivite' : secteurActivites|last.idSecteurActivite, 'codePays': codePaysWithUnderScore}) }}"
title="{{ translate("CV de repreneurs %$nomPourTitle%$ %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
<i class="fas fa-arrow-circle-up fa-2x vert"></i>
</a>
{% else %}
<i class="fas fa-arrow-circle-up fa-2x vert"></i>
{% endif %}
</div>
<div class="lh18 ml-5">
<strong class="vert">{{ localisations|last.nom_localisation }} ({{ nb_cvs }})</strong>
</div>
</div>
{% set nb_elements = sous_localisations_numbers | length %}
{% if nb_elements > 0 and nb_elements <= 5 %}
<div class="col-12 pt-2">
<ul class="cat_regions">
{% for element in sous_localisations_numbers %}
{% set arrayVarsTrans = {"prefixe": element.prefixe, "nom_localisation" : element.nom_localisation, "nomPourTitle": secteurActivites|last.nomPourTitle|lower } %}
<li>
{% if element.nb_cvs > 0 %}
<a href="{{ path('vendre_entreprise_cv_repreneur_croise', {'nomLocalisation' : element.nom_localisation|slugify, 'nomSecteurActivite' : secteurActivites|last.nomSecteurActivite|slugify, 'idLocalisation' : element.id_localisation, 'type' : element.type, 'idSecteurActivite' : secteurActivites|last.idSecteurActivite, 'codePays' : codePaysWithUnderScore }) }}"
title="{{ translate("CV de repreneurs %$nomPourTitle%$ %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
{{ element.nom_localisation }} ({{ element.nb_cvs }})
</a>
{% else %}
<span class="disabled-link">{{ element.nom_localisation }} ({{ element.nb_cvs }})</span>
{% endif %}
</li>
{% endfor %}
</ul>
</div>
{% elseif nb_elements > 5 %}
{% set half = ((sous_localisations_numbers | length) / 2)| round(0, 'ceil') %}
<div class="col-6 pt-2 mt-3">
<ul class="cat_regions">
{% for index, element in sous_localisations_numbers %}
{% set arrayVarsTrans = {"prefixe": element.prefixe, "nom_localisation" : element.nom_localisation, "nomPourTitle": secteurActivites|last.nomPourTitle|lower } %}
{% if index < half %}
<li>
{% if element.nb_cvs > 0 %}
<a href="{{ path('vendre_entreprise_cv_repreneur_croise', {'nomLocalisation' : element.nom_localisation|slugify, 'nomSecteurActivite' : secteurActivites|last.nomSecteurActivite|slugify, 'idLocalisation' : element.id_localisation, 'type' : element.type, 'idSecteurActivite' : secteurActivites|last.idSecteurActivite, 'codePays' : codePaysWithUnderScore }) }}"
title="{{ translate("CV de repreneurs %$nomPourTitle%$ %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
{{ element.nom_localisation }} ({{ element.nb_cvs }})
</a>
{% else %}
<span class="disabled-link">{{ element.nom_localisation }} ({{ element.nb_cvs }})</span>
{% endif %}
</li>
{% endif %}
{% endfor %}
</ul>
</div>
<div class="col-6 pt-2 mt-3">
<ul class="cat_regions">
{% for index, element in sous_localisations_numbers %}
{% set arrayVarsTrans = {"prefixe": element.prefixe, "nom_localisation" : element.nom_localisation, "nomPourTitle": secteurActivites|last.nomPourTitle|lower } %}
{% if index >= half %}
<li>
{% if element.nb_cvs > 0 %}
<a href="{{ path('vendre_entreprise_cv_repreneur_croise', {'nomLocalisation' : element.nom_localisation|slugify, 'nomSecteurActivite' : secteurActivites|last.nomSecteurActivite|slugify, 'idLocalisation' : element.id_localisation, 'type' : element.type, 'idSecteurActivite' : secteurActivites|last.idSecteurActivite, 'codePays' : codePaysWithUnderScore }) }}"
title="{{ translate("CV de repreneurs %$nomPourTitle%$ %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
{{ element.nom_localisation }} ({{ element.nb_cvs }})
</a>
{% else %}
<span class="disabled-link">{{ element.nom_localisation }} ({{ element.nb_cvs }})</span>
{% endif %}
</li>
{% endif %}
{% endfor %}
</ul>
</div>
{% endif %}
</div>
</div>
</div>
</div>
</div>
{% endif %}
<!--2 BOUTONS-->
<div class="row mt-3 mb-3">
<div class="col-12 pt-2 mb-4 text-right">
<a href="{{ path('vendre_entreprise_recherche_cv_repreneur',{'codePays':codePaysWithUnderScore} ) }}?{{ string_params_without_page }}" class="text-decoration-none" title="{{ translate("modifiez votre recherche",lang,"","M") | raw }}">
<button type="submit" class="btn btn-vert-annonce mt-2">{{ translate("modifiez votre recherche",lang,"","M") | raw }}</button>
</a>
</div>
</div>
<!--FIN 2 BOUTONS-->
{% if idLocalisation and not idSecteurActivite %}
<div class="row" >
<div class="col-12 mb-3 ml-3">
{% set p = "" %}
{% if ( nb_annonces > 1 ) %}
{% set p = "p" %}
{% endif %}
{% set arrayVarsTrans = {"prefixe": localisations|last.prefixe, "nom_localisation" : localisations|last.nom_localisation } %}
<span class="fs13 vert">{{ nb_annonces }} {{ translate("$$acheteur$${p|acheteurs} %$prefixe%$ %$nom_localisation%$ dont",lang,"","m", p, arrayVarsTrans) | raw }} :</span>
</div>
</div>
<!--MOBILE-->
<div class="row d-block d-sm-none bkg_gris_clair">
<div class="col-12">
<div class="row">
<div class="col-6 text-center my-3 br_gris">
<div class="blanc lh099 py-3">
<a href="{{ path('vendre_entreprise_annonces_acquisition_localisation',{'slug':slug, 'type':type, 'idLocalisation':idLocalisation, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="vert lh099 py-3">
<span class="fs2">{{ nb_annonces_acquisition }}</span><br>
{% set p = "" %}
{% if ( nb_annonces_acquisition > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="res_font">{{ translate("$$annonce$${p|annonces}<br>d'acquisition",lang,"","m", p) | raw }}</span>
</a>
</div>
</div>
<div class="col-6 text-center my-3">
<div class="blanc bkg_vert lh099 py-3">
<span class="fs2">{{ nb_cvs }}</span><br>
{% set p = "" %}
{% if ( nb_cvs > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="res_font">{{ translate("CV de <br>$$repreneur$${p|repreneurs}",lang,"","M", p) | raw }}</span>
</div>
</div>
<div class="col-6 text-center my-3 br_gris">
<div class="blanc lh099 py-3">
<a href="{{ path('vendre_entreprise_acquereur_historique_localisation',{'slug':slug, 'type':type, 'idLocalisation':idLocalisation, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="vert lh099 py-3">
<span class="fs2">{{ nb_acheteurs_potentiels }}</span><br>
{% set p = "" %}
{% if ( nb_acheteurs_potentiels > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="res_font">{{ translate("$$acheteur<br>potentiel$${p|acheteurs<br>potentiels}",lang,"","m", p) | raw }}</span></a>
</div>
</div>
<div class="col-6 text-center my-3 pr-4">
<div class="blanc lh099 py-3">
<a href="{{ path('vendre_entreprise_fonds_acquereur_localisation',{'slug':slug, 'type':type, 'idLocalisation':idLocalisation, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="vert lh099 py-3">
<span class="fs2">{{ nb_investisseurs_acquereurs }}</span><br>
{% set p = "" %}
{% if ( nb_investisseurs_acquereurs > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="res_font">{{ translate("$$fonds<br>acquereur$${p|fonds<br>acquereurs}",lang,"","m", p) | raw }}</span></a>
</div>
</div>
</div>
</div>
</div>
<!--MOBILE-->
<!--TOUT SAUF MOBILE-->
<div class="row d-none d-sm-block">
<div class="onglet5 col-12 mb-4">
<nav>
<div class="nav nav-tabs nav-fill" id="nav-tab" role="tablist">
<div class="col-12 col-sm-3 no-padding-x bl_gris lh13 order-4 order-sm-1">
<a class="nav-item nav-link" href="{{ path('vendre_entreprise_annonces_acquisition_localisation',{'slug':slug, 'type':type, 'idLocalisation':idLocalisation, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
{% set p = "" %}
{% if ( nb_annonces_acquisition > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="fs2">{{ nb_annonces_acquisition }}</span><br><span class="fs12">{{ translate("$$annonce$${p|annonces}<br>d'acquisition",lang,"","m", p) | raw }}</span>
</a>
</div>
<div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-2">
<div class="nav-item nav-link active">
{% set p = "" %}
{% if ( nb_cvs > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="fs2">{{ nb_cvs }}</span><br><span class="fs12">{{ translate("CV de <br>$$repreneur$${p|repreneurs}",lang,"","M", p) | raw }}</span>
</div>
</div>
<div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-3">
<a class="nav-item nav-link" href="{{ path('vendre_entreprise_acquereur_historique_localisation',{'slug':slug, 'type':type, 'idLocalisation':idLocalisation, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
{% set p = "" %}
{% if ( nb_acheteurs_potentiels > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="fs2">{{ nb_acheteurs_potentiels }}</span><br><span class="fs12">{{ translate("$$acheteur<br>potentiel$${p|acheteurs<br>potentiels}",lang,"","m", p) | raw }}</span>
</a>
</div>
<div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-4">
<a class="nav-item nav-link" href="{{ path('vendre_entreprise_fonds_acquereur_localisation',{'slug':slug, 'type':type, 'idLocalisation':idLocalisation, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
{% set p = "" %}
{% if ( nb_investisseurs_acquereurs > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="fs2">{{ nb_investisseurs_acquereurs }}</span><br><span class="fs12">{{ translate("$$fonds<br>acquereur$${p|fonds<br>acquereurs}",lang,"","m", p) | raw }}</span>
</a>
</div>
</div>
</nav>
</div>
</div>
<!--TOUT SAUF MOBILE-->
{% elseif idSecteurActivite and not idLocalisation %}
<div class="row" >
<div class="col-12 mb-3 ml-3">
{% set p = "" %}
{% if ( nb_annonces > 1 ) %}
{% set p = "p" %}
{% endif %}
{% set arrayVarsTrans = {"nomPourTitle": secteurActivites|last.nomPourTitle|lower } %}
<span class="fs13 vert">{{ nb_annonces }} {{ translate("$$acheteur$${p|acheteurs} dont",lang,"","m", p) | raw }} :</span>
</div>
</div>
<!--MOBILE-->
<div class="row d-block d-sm-none bkg_gris_clair">
<div class="col-12">
<div class="row">
<div class="col-6 text-center my-3 br_gris">
<div class="blanc lh099 py-3">
<a href="{{ path('vendre_entreprise_annonces_acquisition_secteur_activite',{'slug': slug, 'idSecteurActivite' : idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="vert lh099 py-3">
<span class="fs2">{{ nb_annonces_acquisition }}</span><br>
{% set p = "" %}
{% if ( nb_annonces_acquisition > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="res_font">{{ translate("$$annonce$${p|annonces}<br>d'acquisition",lang,"","m", p) | raw }}</span>
</a>
</div>
</div>
<div class="col-6 text-center my-3">
<div class="blanc bkg_vert lh099 py-3">
<span class="fs2">{{ nb_cvs }}</span><br>
{% set p = "" %}
{% if ( nb_cvs > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="res_font">{{ translate("CV de <br>$$repreneur$${p|repreneurs}",lang,"","M", p) | raw }}</span>
</div>
</div>
<div class="col-6 text-center my-3 br_gris">
<div class="blanc lh099 py-3">
<a href="{{ path('vendre_entreprise_acquereur_historique_secteur_activite',{'slug': slug, 'idSecteurActivite' : idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="vert lh099 py-3">
<span class="fs2">{{ nb_acheteurs_potentiels }}</span><br>
{% set p = "" %}
{% if ( nb_acheteurs_potentiels > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="res_font">{{ translate("$$acheteur<br>potentiel$${p|acheteurs<br>potentiels}",lang,"","m", p) | raw }}</span></a>
</div>
</div>
<div class="col-6 text-center my-3 pr-4">
<div class="blanc lh099 py-3">
<a href="{{ path('vendre_entreprise_fonds_acquereur_secteur_activite',{'slug': slug, 'idSecteurActivite' : idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="vert lh099 py-3">
<span class="fs2">{{ nb_investisseurs_acquereurs }}</span><br>
{% set p = "" %}
{% if ( nb_investisseurs_acquereurs > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="res_font">{{ translate("$$fonds<br>acquereur$${p|fonds<br>acquereurs}",lang,"","m", p) | raw }}</span></a>
</div>
</div>
</div>
</div>
</div>
<!--MOBILE-->
<!--TOUT SAUF MOBILE-->
<div class="row d-none d-sm-block">
<div class="onglet5 col-12 mb-4">
<nav>
<div class="nav nav-tabs nav-fill" id="nav-tab" role="tablist">
<div class="col-12 col-sm-3 no-padding-x bl_gris lh13 order-4 order-sm-1">
<a class="nav-item nav-link" href="{{ path('vendre_entreprise_annonces_acquisition_secteur_activite',{'slug': slug, 'idSecteurActivite' : idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
{% set p = "" %}
{% if ( nb_annonces_acquisition > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="fs2">{{ nb_annonces_acquisition }}</span><br><span class="fs12">{{ translate("$$annonce$${p|annonces}<br>d'acquisition",lang,"","m", p) | raw }}</span>
</a>
</div>
<div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-2">
<div class="nav-item nav-link active">
{% set p = "" %}
{% if ( nb_cvs > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="fs2">{{ nb_cvs }}</span><br><span class="fs12">{{ translate("CV de <br>$$repreneur$${p|repreneurs}",lang,"","M", p) | raw }}</span>
</div>
</div>
<div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-3">
<a class="nav-item nav-link" href="{{ path('vendre_entreprise_acquereur_historique_secteur_activite',{'slug': slug, 'idSecteurActivite' : idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
{% set p = "" %}
{% if ( nb_acheteurs_potentiels > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="fs2">{{ nb_acheteurs_potentiels }}</span><br><span class="fs12">{{ translate("$$acheteur<br>potentiel$${p|acheteurs<br>potentiels}",lang,"","m", p) | raw }}</span>
</a>
</div>
<div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-4">
<a class="nav-item nav-link" href="{{ path('vendre_entreprise_fonds_acquereur_secteur_activite',{'slug': slug, 'idSecteurActivite' : idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
{% set p = "" %}
{% if ( nb_investisseurs_acquereurs > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="fs2">{{ nb_investisseurs_acquereurs }}</span><br><span class="fs12">{{ translate("$$fonds<br>acquereur$${p|fonds<br>acquereurs}",lang,"","m", p) | raw }}</span>
</a>
</div>
</div>
</nav>
</div>
</div>
<!--TOUT SAUF MOBILE-->
{% elseif idLocalisation and idSecteurActivite %}
<div class="row" >
<div class="col-12 mb-3 ml-3">
{% set p = "" %}
{% if ( nb_annonces > 1 ) %}
{% set p = "p" %}
{% endif %}
{% set arrayVarsTrans = {"prefixe": localisations|last.prefixe, "nom_localisation" : localisations|last.nom_localisation, "nomPourTitle": secteurActivites|last.nomPourTitle|lower } %}
<span class="fs13 vert">{{ nb_annonces }} {{ translate("$$acheteur$${p|acheteurs} dont",lang,"","m", p) | raw }} :</span>
</div>
</div>
<!--MOBILE-->
<div class="row d-block d-sm-none bkg_gris_clair">
<div class="col-12">
<div class="row">
<div class="col-6 text-center my-3 br_gris">
<div class="blanc lh099 py-3">
<a href="{{ path('vendre_entreprise_annonces_acquisition_croise',{'nomLocalisation': localisations|last.nom_localisation|slugify, 'nomSecteurActivite' : secteurActivites|last.nomSecteurActivite|slugify, 'type': type, 'idLocalisation': localisations|last.id_localisation, 'idSecteurActivite' : secteurActivites|last.idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="vert lh099 py-3">
<span class="fs2">{{ nb_annonces_acquisition }}</span><br>
{% set p = "" %}
{% if ( nb_annonces_acquisition > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="res_font">{{ translate("$$annonce$${p|annonces}<br>d'acquisition",lang,"","m", p) | raw }}</span>
</a>
</div>
</div>
<div class="col-6 text-center my-3">
<div class="blanc bkg_vert lh099 py-3">
<span class="fs2">{{ nb_cvs }}</span><br>
{% set p = "" %}
{% if ( nb_cvs > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="res_font">{{ translate("CV de <br>$$repreneur$${p|repreneurs}",lang,"","M", p) | raw }}</span>
</div>
</div>
<div class="col-6 text-center my-3 br_gris">
<div class="blanc lh099 py-3">
<a href="{{ path('vendre_entreprise_acquereur_historique_croise',{'nomLocalisation': localisations|last.nom_localisation|slugify, 'nomSecteurActivite' : secteurActivites|last.nomSecteurActivite|slugify, 'type': type, 'idLocalisation': localisations|last.id_localisation, 'idSecteurActivite' : secteurActivites|last.idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="vert lh099 py-3">
<span class="fs2">{{ nb_acheteurs_potentiels }}</span><br>
{% set p = "" %}
{% if ( nb_acheteurs_potentiels > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="res_font">{{ translate("$$acheteur<br>potentiel$${p|acheteurs<br>potentiels}",lang,"","m", p) | raw }}</span></a>
</div>
</div>
<div class="col-6 text-center my-3 pr-4">
<div class="blanc lh099 py-3">
<a href="{{ path('vendre_entreprise_fonds_acquereur_croise',{'nomLocalisation': localisations|last.nom_localisation|slugify, 'nomSecteurActivite' : secteurActivites|last.nomSecteurActivite|slugify, 'type': type, 'idLocalisation': localisations|last.id_localisation, 'idSecteurActivite' : secteurActivites|last.idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="vert lh099 py-3">
<span class="fs2">{{ nb_investisseurs_acquereurs }}</span><br>
{% set p = "" %}
{% if ( nb_investisseurs_acquereurs > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="res_font">{{ translate("$$fonds<br>acquereur$${p|fonds<br>acquereurs}",lang,"","m", p) | raw }}</span></a>
</div>
</div>
</div>
</div>
</div>
<!--MOBILE-->
<!--TOUT SAUF MOBILE-->
<div class="row d-none d-sm-block">
<div class="onglet5 col-12 mb-4">
<nav>
<div class="nav nav-tabs nav-fill" id="nav-tab" role="tablist">
<div class="col-12 col-sm-3 no-padding-x bl_gris lh13 order-4 order-sm-1">
<a class="nav-item nav-link" href="{{ path('vendre_entreprise_annonces_acquisition_croise',{'nomLocalisation': localisations|last.nom_localisation|slugify, 'nomSecteurActivite' : secteurActivites|last.nomSecteurActivite|slugify, 'type': type, 'idLocalisation': localisations|last.id_localisation, 'idSecteurActivite' : secteurActivites|last.idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
{% set p = "" %}
{% if ( nb_annonces_acquisition > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="fs2">{{ nb_annonces_acquisition }}</span><br><span class="fs12">{{ translate("$$annonce$${p|annonces}<br>d'acquisition",lang,"","m", p) | raw }}</span>
</a>
</div>
<div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-2">
<div class="nav-item nav-link active">
{% set p = "" %}
{% if ( nb_cvs > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="fs2">{{ nb_cvs }}</span><br><span class="fs12">{{ translate("CV de <br>$$repreneur$${p|repreneurs}",lang,"","M", p) | raw }}</span>
</div>
</div>
<div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-3">
<a class="nav-item nav-link" href="{{ path('vendre_entreprise_acquereur_historique_croise',{'nomLocalisation': localisations|last.nom_localisation|slugify, 'nomSecteurActivite' : secteurActivites|last.nomSecteurActivite|slugify, 'type': type, 'idLocalisation': localisations|last.id_localisation, 'idSecteurActivite' : secteurActivites|last.idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
{% set p = "" %}
{% if ( nb_acheteurs_potentiels > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="fs2">{{ nb_acheteurs_potentiels }}</span><br><span class="fs12">{{ translate("$$acheteur<br>potentiel$${p|acheteurs<br>potentiels}",lang,"","m", p) | raw }}</span>
</a>
</div>
<div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-4">
<a class="nav-item nav-link" href="{{ path('vendre_entreprise_fonds_acquereur_croise',{'nomLocalisation': localisations|last.nom_localisation|slugify, 'nomSecteurActivite' : secteurActivites|last.nomSecteurActivite|slugify, 'type': type, 'idLocalisation': localisations|last.id_localisation, 'idSecteurActivite' : secteurActivites|last.idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
{% set p = "" %}
{% if ( nb_investisseurs_acquereurs > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="fs2">{{ nb_investisseurs_acquereurs }}</span><br><span class="fs12">{{ translate("$$fonds<br>acquereur$${p|fonds<br>acquereurs}",lang,"","m", p) | raw }}</span>
</a>
</div>
</div>
</nav>
</div>
</div>
<!--TOUT SAUF MOBILE-->
{% else %}
<div class="row" >
<div class="col-12 mb-3 ml-3">
{% set p = "" %}
{% if ( nb_annonces > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="fs13 vert">{{ nb_annonces }} {{ translate("$$acheteur$${p|acheteurs} dont",lang,"","m", p) | raw }} :</span>
</div>
</div>
<!--MOBILE-->
<div class="row d-block d-sm-none bkg_gris_clair">
<div class="col-12">
<div class="row">
<div class="col-6 text-center my-3 bl_gris">
<div class="blanc lh099 py-3">
<a href="{{ path('vendre_entreprise_resultats_annonces_acquisition',{'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="vert lh099 py-3">
<span class="fs2">{{ nb_annonces_acquisition }}</span><br>
{% set p = "" %}
{% if ( nb_annonces_acquisition > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="res_font">{{ translate("$$annonce$${p|annonces}<br>d'acquisition",lang,"","m", p) | raw }}</span>
</a>
</div>
</div>
<div class="col-6 text-center my-3">
<div class="blanc bkg_vert lh099 py-3">
<span class="fs2">{{ nb_cvs }}</span><br>
{% set p = "" %}
{% if ( nb_cvs > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="res_font">{{ translate("CV de <br>$$repreneur$${p|repreneurs}",lang,"","M", p) | raw }}</span>
</div>
</div>
<div class="col-6 text-center my-3 br_gris">
<div class="blanc lh099 py-3">
<a href="{{ path('vendre_entreprise_resultats_acquereur_historique',{'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="vert lh099 py-3">
<span class="fs2">{{ nb_acheteurs_potentiels }}</span><br>
{% set p = "" %}
{% if ( nb_acheteurs_potentiels > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="res_font">{{ translate("$$acheteur<br>potentiel$${p|acheteurs<br>potentiels}",lang,"","m", p) | raw }}</span></a>
</div>
</div>
<div class="col-6 text-center my-3 pr-4">
<div class="blanc lh099 py-3">
<a href="{{ path('vendre_entreprise_resultats_fonds_acquereur',{'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="vert lh099 py-3">
<span class="fs2">{{ nb_investisseurs_acquereurs }}</span><br>
{% set p = "" %}
{% if ( nb_investisseurs_acquereurs > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="res_font">{{ translate("$$fonds<br>acquereur$${p|fonds<br>acquereurs}",lang,"","m", p) | raw }}</span>
</a>
</div>
</div>
</div>
</div>
</div>
<!--MOBILE-->
<!--TOUT SAUF MOBILE-->
<div class="row d-none d-sm-block">
<div class="onglet5 col-12 mb-4">
<nav>
<div class="nav nav-tabs nav-fill" id="nav-tab" role="tablist">
<div class="col-12 col-sm-3 no-padding-x bl_gris lh13 order-4 order-sm-1">
<a class="nav-item nav-link" href="{{ path('vendre_entreprise_resultats_annonces_acquisition',{'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
{% set p = "" %}
{% if ( nb_annonces_acquisition > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="fs2">{{ nb_annonces_acquisition }}</span><br><span class="fs12">{{ translate("$$annonce$${p|annonces}<br>d'acquisition",lang,"","m", p) | raw }}</span>
</a>
</div>
<div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-2">
<div class="nav-item nav-link active">
{% set p = "" %}
{% if ( nb_cvs > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="fs2">{{ nb_cvs }}</span><br><span class="fs12">{{ translate("CV de <br>$$repreneur$${p|repreneurs}",lang,"","M", p) | raw }}</span>
</div>
</div>
<div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-3">
<a class="nav-item nav-link" href="{{ path('vendre_entreprise_resultats_acquereur_historique',{'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
{% set p = "" %}
{% if ( nb_acheteurs_potentiels > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="fs2">{{ nb_acheteurs_potentiels }}</span><br><span class="fs12">{{ translate("$$acheteur<br>potentiel$${p|acheteurs<br>potentiels}",lang,"","m", p) | raw }}</span>
</a>
</div>
<div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-4">
<a class="nav-item nav-link" href="{{ path('vendre_entreprise_resultats_fonds_acquereur',{'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
{% set p = "" %}
{% if ( nb_investisseurs_acquereurs > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="fs2">{{ nb_investisseurs_acquereurs }}</span><br><span class="fs12">{{ translate("$$fonds<br>acquereur$${p|fonds<br>acquereurs}",lang,"","m", p) | raw }}</span>
</a>
</div>
</div>
</nav>
</div>
</div>
<!--TOUT SAUF MOBILE-->
{% endif %}
<div class="row mt-5" >
<div class="col-12 mb-1 ml-3 mt-3">
{% set p = "" %}
{% if ( nb_cvs > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="fs18">{{ nb_cvs }} {{ translate("CV de $$repreneur$${p|repreneurs}",lang,"","M", p) | raw }}</span>
</div>
</div>
<!--PAGINATION-->
<div class="row mt-3">
<div class="col-sm-12">
<nav aria-label="..." class="pagination-vert">
{{ knp_pagination_render(liste_cvs) }}
</nav>
</div>
</div>
<!--FIN PAGINATION-->
<div class="row" >
<div class="col-12 col-md-5 offset-md-7 col-lg-3 offset-lg-9 text-right mb-2">
<select class="form-control" id="idFromControlSelectTri" v-on:change="sortBy($event)">
{% if is_recherche_by_localisation %}
<option value="pertinence" {% if tri == "pertinence" or tri_default == 'pertinence' %}selected="selected"{% endif %}>{{ translate("pertinence",lang,"","M") | raw }}</option>
{% endif %}
<option value="date_desc" {% if tri == "date_desc" or tri_default == 'date_desc' %}selected="selected"{% endif %}>{{ translate("CV les plus recents",lang,"","M") | raw }}</option>
<option value="ca_desc" {% if tri == "ca_desc" %}selected="selected"{% endif %} >{{ translate("apport décroissant",lang,"","M") | raw }}</option>
<option value="ca_asc" {% if tri == "ca_asc" %}selected="selected"{% endif %}>{{ translate("apport croissant",lang,"","M") | raw }}</option>
</select>
</div>
</div>
<div class="row" >
<div class="col-12">
<!--ANNONCES -->
{% for index, cv in liste_cvs %}
{% set lienRepreneurCvDetails = path('repreneur_cv_detail',
{
'idRepreneur':cv.idRepreneur,
'titreslug':cv.titreSocieteRecherchee| slugify ,
'codePays':codePaysWithUnderScore
}) ~ '?from=vendre-entreprise&urlList='~ urlList ~ '&' ~ string_params ~ '&index=' ~ index
%}
<div class="card mb-3 card-ie filet_gris">
<div class="card-body">
<div class="row">
<div class="col-12 col-md-8 col-lg-9 col-xl-10">
<div class="mb-2">
<h5 class="titre_annonce_vert">
<a href="{{ lienRepreneurCvDetails }}" title="{{ cv.titreSocieteRecherchee }}">
{{ cv.titreSocieteRecherchee }}
</a>
</h5>
{% if cv.etat is defined and (cv.etat == "information_transmise" or cv.etat == "facture_envoyee") %}
<span class="orange font_600"><i class="fa-solid fa-circle-check"></i> {{ translate("déjà commandé",lang,"","M") | raw }}</span>
{% endif %}
</div>
<div class="mb-1">
{{ translate("recherche par" ,lang,"","M") | raw }} :
<span class="nowrap_custom">
<strong> {{ cv.titreProfil }}</strong>
</span>
<br>
<span class="nowrap_custom">
{{ translate("n° du profil" ,lang,"","M") | raw }} :
<strong>{{ cv.idRepreneur }}</strong>
</span>
<span class="nowrap_custom">
{{ translate("age" ,lang,"","M") | raw }} : <strong>{{ cv.age }} {{ translate("ans",lang,"","M", p) | raw }}</strong>
</span>
<span class="nowrap_custom">
{{ translate("apport" ,lang,"","M") | raw }} : <strong>{{ cv.montantApport }} k€</strong>
</span>
<i class="fas fa-map-marker-alt"></i>
{{ cv.ville }}
</div>
</div>
<div class="col-12 col-md-4 col-lg-3 col-xl-2" id="cartes">
<div class="row">
<div class="col-4 col-md-12 text-center">
<a href="{{ lienRepreneurCvDetails }}">
{% if cv.cartes.id_localisation_by_country|length == 1 %}
{% if cv.cartes.id_localisation_by_country|keys |first == "33" %}
<img class="img-fluid"
id='absolute_index_1'
src="{{ CDN.CDN_FUSACQ }}/static/help-fusacq/fr/images/cartes/fond/33/33_fond_monde.png"
alt="France">
{% for k, carte in cv.cartes.id_localisation_by_country.33 %}
<img class="img-fluid"
id='absolute_index_2'
src="{{ CDN.CDN_FUSACQ }}/static/help-fusacq/fr/images/cartes/fond/33/{{ carte }}.png"
alt="France">
{% endfor %}
{% endif %}
{% if cv.cartes.id_localisation_by_country|keys |first == "41" %}
{% if cv.cartes.id_localisation_by_country.41 |length == 1 %}
<img class="img-fluid"
id='absolute_index_2'
src="{{ CDN.CDN_FUSACQ }}/static/help-fusacq/fr/images/cartes/pays/41/{{ cv.cartes.id_localisation_by_country.41|first }}.png"
alt="Suisse">
{% else %}
<img class="img-fluid"
id='absolute_index_2'
src="{{ CDN.CDN_FUSACQ }}/static/help-fusacq/fr/images/cartes/pays/41/41_transparent.png"
alt="Suisse">
{% endif %}
{% endif %}
{% if cv.cartes.id_localisation_by_country|keys |first == "01" %}
{% if cv.cartes.id_localisation_by_country['01'] |length == 1 %}
<img class="img-fluid"
id='absolute_index_2'
src="{{ CDN.CDN_FUSACQ }}/static/help-fusacq/fr/images/cartes/pays/01/{{ cv.cartes.id_localisation_by_country['01']|first }}.png"
alt="Canada">
{% else %}
<img class="img-fluid"
id='absolute_index_2'
src="{{ CDN.CDN_FUSACQ }}/static/help-fusacq/fr/images/cartes/pays/01/01_transparent.png"
alt="Canada">
{% endif %}
{% endif %}
{% if cv.cartes.id_localisation_by_country|keys |first == "32" %}
{% if cv.cartes.id_localisation_by_country.32 |length == 1 %}
<img class="img-fluid"
id='absolute_index_2'
src="{{ CDN.CDN_FUSACQ }}/static/help-fusacq/fr/images/cartes/pays/32/{{ cv.cartes.id_localisation_by_country.32|first }}.png"
alt="Belgique">
{% else %}
<img class="img-fluid"
id='absolute_index_2'
src="{{ CDN.CDN_FUSACQ }}/static/help-fusacq/fr/images/cartes/pays/32/32_transparent.png"
alt="Belgique">
{% endif %}
{% endif %}
{% endif %}
{% if cv.cartes.id_localisation_by_country|length > 1 %}
{% if 33 in cv.cartes.id_localisation_by_country|keys %}
<img class="img-fluid"
id='absolute_index_1'
src="{{ CDN.CDN_FUSACQ }}/static/help-fusacq/fr/images/cartes/fond/33/33_fond_monde.png"
alt="France">
{% for k, carte in cv.cartes.id_localisation_by_country.33 %}
<img class="img-fluid"
id='absolute_index_2'
src="{{ CDN.CDN_FUSACQ }}/static/help-fusacq/fr/images/cartes/fond/33/{{ carte }}.png"
alt="France">
{% endfor %}
<img class="img-fluid"
id='absolute_index_2'
src="{{ CDN.CDN_FUSACQ }}/static/help-fusacq/fr/images/cartes/fond/33/monde.png"
alt="Monde">
{% endif %}
{% if 33 not in cv.cartes.id_localisation_by_country|keys %}
<img class="img-fluid"
id='absolute_index_2'
src="{{ CDN.CDN_FUSACQ }}/static/help-fusacq/fr/images/cartes/pays/monde_transparent.png"
alt="Monde">
{% endif %}
{% endif %}
</a>
</div>
</div>
</div>
<div class="col-4 col-md-4 col-lg-4 mt-2">
<a href="{{ lienRepreneurCvDetails }}" title="{{ translate("voir les details" ,lang,"","M") | raw }}">
<button type="button" class="btn btn-vert-annonce">
{{ translate("voir les details" ,lang,"","M") | raw }}
</button>
</a>
</div>
</div>
</div>
</div>
{% endfor %}
<!--FIN ANNONCES -->
<!--PUB FRANCHISE-->
<!--<div class="card mb-3 card-ie card-franchises filet_gris">
<div class="card-header">Avez-vous pense a creer ou reprendre en franchise ?</div>
<div class="card-body">
<div class="row">
<div class="col-6 col-md-3">
<a href="https://www.placedesfranchises.com/carslift" target="_blank" title="Carslift"><img class="img-fluid" src="https://static.placedesfranchises.com/images/uploads/5ede3ed64cf8e/logo_carslift.jpg" alt="Carslift" ></a>
</div>
<div class="col-6 col-md-7">
<div>
<a href="https://www.placedesfranchises.com/carslift" class="inter_orange_link" title="Carslift">CARSLIFT</a><br>
<a href="https://www.placedesfranchises.com/carslift" class="vert_franchises" title="Le specialiste du bien motorise">Le specialiste du bien motorise</a><br>
<span class="nowrap_custom">Apport : <strong>15 000 € </strong></span>
<span class="nowrap_custom">Droit d'entree : <strong>35 000 €</strong>
</div>
</div>
<div class="col-12 col-md-2 text-center">
<div class="pt-3 mt-2 inline"><small>Consultez sur </small></div>
<div class=" inline"><img src="https://static.placedesfranchises.com/img/logo_text.jpg" width="120"></div>
</div>
</div>
</div>
</div>-->
<!--FIN PUB FRANCHISE-->
<!--PUB FRANCHISE-->
<!--<div class="card mb-3 card-ie card-franchises">
<div class="card-header">{{ translate("avez-vous pense a creer ou reprendre en franchise ?",lang,"","M") | raw }}</div>
<div class="card-body">
<div class="row">
<div class="col-12 col-md-6">
<a href="https://www.placedesfranchises.com/carslift" class="inter_orange_link" title="OUEST CONTRÔLE ENVIRONNEMENT">OUEST CONTRÔLE ENVIRONNEMENT</a>
</div>
<div class="col-12 col-md-6">
<div>
<a href="https://www.placedesfranchises.com/carslift" class="vert_franchises fs13" title="Le specialiste du bien motorise">Le specialiste du bien motorise</a><br>
<span class="nowrap_custom">{{ translate("apport",lang,"","M") | raw }} : <strong>15 000 € </strong></span>
<span class="nowrap_custom">{{ translate("droit d'entree",lang,"","M") | raw }} : <strong>35 000 €</strong>
</div>
</div>
<div class="col-12 col-md-12 text-right mt-3">
<div class="inline"><small>{{ translate("consultez sur",lang,"","M") | raw }} </small></div>
<div class="inline"><img src="images/logo_PDF_petit.jpg" width="120"></div>
</div>
</div>
</div>
</div>-->
<!--FIN PUB FRANCHISE-->
</div>
</div>
<!--PAGINATION-->
<div class="row mt-3">
<div class="col-sm-12">
<nav aria-label="..." class="pagination-vert">
{{ knp_pagination_render(liste_cvs) }}
</nav>
</div>
</div>
<!--FIN PAGINATION-->
</div><!--FIN COLONNE DROITE -->
</div> <!--FIN ROW CONTAINER -->
</div> <!--FIN CONTAINER -->
{% endblock %}
{% block javascripts %}
{{ parent() }}
<script type="module" data-name="{{ codePaysWithUnderScore }}" id="codePaysParam" src="{{ asset('build/js/vendre_entreprise/acquereur_historique.js') }}"></script>
{% endblock %}