{% extends 'base.html.twig' %}
{% block stylesheets %} {{ parent() }}
<!-- <link rel="stylesheet" href="{{ asset('build/css/reprendre_entreprise/entreprise.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_cibles_potentielles.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('reprendre_entreprise_annonces_cession_entreprise',{'codePays':codePaysWithUnderScore} ) }}">{{ translate("reprendre une entreprise",lang,"","M") | raw }}</a></li>
{% if idLocalisation and not idSecteurActivite %}
<li class="breadcrumb-item"><a href="{{ path('reprendre_entreprise_resultats_cibles_potentielles', {'codePays' : codePaysWithUnderScore}) }}" title="{{ translate("cibles potentielles",lang,"","M") | raw }}">{{ translate("cibles potentielles",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('reprendre_entreprise_annonce_cession_entreprise_localisation', {'slug': localisation.nom_localisation|slugify, 'type': type_loc, 'idLocalisation': localisation.id_localisation, 'codePays': codePaysWithUnderScore}) }}"
title="{{ translate("cibles potentielles %$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('reprendre_entreprise_resultats_cibles_potentielles', {'codePays' : codePaysWithUnderScore}) }}" title="{{ translate("cibles potentielles",lang,"","M") | raw }}">{{ translate("cibles potentielles",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('reprendre_entreprise_cible_potentielle_secteur_activite', {'slug': secteurActivite.nomSecteurActivite|slugify, 'idSecteurActivite': secteurActivite.idSecteurActivite, 'codePays': codePaysWithUnderScore}) }}"
title="{{ translate("cibles potentielles %$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('reprendre_entreprise_resultats_cibles_potentielles', {'codePays' : codePaysWithUnderScore}) }}" title="{{ translate("cibles potentielles",lang,"","M") | raw }}">{{ translate("cibles potentielles",lang,"","M") | raw }}</a></li>
{% for index, secteurActivite in secteurActivites %}
{% set arrayVarsTrans = {"nomPourTitle": secteurActivite.nomPourTitle|lower } %}
<li class="breadcrumb-item">
<a href="{{ path('reprendre_entreprise_cible_potentielle_secteur_activite', {'slug': secteurActivite.nomSecteurActivite|slugify, 'idSecteurActivite': secteurActivite.idSecteurActivite, 'codePays': codePaysWithUnderScore}) }}"
title="{{ translate("cibles potentielles %$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('reprendre_entreprise_cible_potentielle_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("cibles potentielles %$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("cibles potentielles",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="bleu fs2">{{ translate("cibles potentielles",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('reprendre_entreprise_cible_potentielle_localisation', {'slug': prev_localisation.nom_localisation|slugify, 'type': prev_localisation.type, 'idLocalisation': prev_localisation.id_localisation, 'codePays': codePaysWithUnderScore}) }}" title="{{ translate("cibles potentielles %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
<i class="fas fa-arrow-circle-up fa-2x bleu"></i>
</a>
{% else %}
<i class="fas fa-arrow-circle-up fa-2x bleu"></i>
{% endif %}
</div>
<div class="lh18 ml-5">
<strong class="bleu">{{ localisations|last.nom_localisation }} ({{ nb_cibles_potentielles }})</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_cibles_potentielles > 0 %}
<a href="{{ path('reprendre_entreprise_cible_potentielle_localisation', {'slug' : element.nom_localisation|slugify, 'idLocalisation' : element.id_localisation, 'type' : element.type, 'codePays' : codePaysWithUnderScore }) }}" title="{{ translate("cibles potentielles %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
{{ element.nom_localisation }} ({{ element.nb_cibles_potentielles }})
</a>
{% else %}
<span class="disabled-link">{{ element.nom_localisation }} ({{ element.nb_cibles_potentielles }})</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_cibles_potentielles > 0 %}
<a href="{{ path('reprendre_entreprise_cible_potentielle_localisation', {'slug' : element.nom_localisation|slugify, 'idLocalisation' : element.id_localisation, 'type' : element.type, 'codePays' : codePaysWithUnderScore }) }}" title="{{ translate("cibles potentielles %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
{{ element.nom_localisation }} ({{ element.nb_cibles_potentielles }})
</a>
{% else %}
<span class="disabled-link">{{ element.nom_localisation }} ({{ element.nb_cibles_potentielles }})</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_cibles_potentielles > 0 %}
<a href="{{ path('reprendre_entreprise_cible_potentielle_localisation', {'slug' : element.nom_localisation|slugify, 'idLocalisation' : element.id_localisation, 'type' : element.type, 'codePays' : codePaysWithUnderScore }) }}" title="{{ translate("cibles potentielles %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
{{ element.nom_localisation }} ({{ element.nb_cibles_potentielles }})
</a>
{% else %}
<span class="disabled-link">{{ element.nom_localisation }} ({{ element.nb_cibles_potentielles }})</span>
{% endif %}
</li>
{% endif %}
{% endfor %}
</ul>
</div>
{% endif %}
</div>
</div>
</div>
<div class="col-12 text-right">
{% set arrayVarsTrans = {"prefixe": localisations|last.prefixe, "nom_localisation" : localisations|last.nom_localisation } %}
<img src="https://content.fusacq.com/static/help-fusacq/fr/css/images/mini_logo.jpg" alt="Place des Commerces">
<a href="https://www.placedescommerces.com/vente-commerce-{{ localisations|last.nom_localisation|slugify }},{{ type }}{{ localisations|last.id_localisation }}.html" target="_blank">{{ translate("reprendre un commerce %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}</a>
</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('reprendre_entreprise_cible_potentielle_secteur_activite', {'slug': prev_secteur.nomSecteurActivite|slugify, 'idSecteurActivite': prev_secteur.idSecteurActivite, 'codePays': codePaysWithUnderScore}) }}"
title="{{ translate("cibles potentielles %$nomPourTitle%$",lang,"","M", "", arrayVarsTrans) | raw }}">
<i class="fas fa-arrow-circle-up fa-2x bleu"></i>
</a>
{% else %}
<a href="{{ path('reprendre_entreprise_cibles_potentielles', {'codePays': codePaysWithUnderScore }) }}" title="{{ translate("toutes les opportunités", lang, "", "M") }}">
<i class="fas fa-arrow-circle-up fa-2x bleu"></i>
</a>
{% endif %}
</div>
<div class="lh18 ml-5">
<strong class="bleu">{{ secteurActivites|last.nomSecteurActivite }} ({{ nb_cibles_potentielles }})</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": secteurActivites|last.nomPourTitle|lower } %}
<li>
{% if element.nb_cibles_potentielles > 0 %}
<a href="{{ path('reprendre_entreprise_cible_potentielle_secteur_activite', {'slug' : element.nomSecteurActivite|slugify, 'idSecteurActivite' : element.idSecteurActivite, 'codePays' : codePaysWithUnderScore }) }}"
title="{{ translate("cibles potentielles %$nomPourTitle%$",lang,"","M", "", arrayVarsTrans) | raw }}">
{{ element.nomSecteurActivite }} ({{ element.nb_cibles_potentielles }})
</a>
{% else %}
<span class="disabled-link">{{ element.nomSecteurActivite }} ({{ element.nb_cibles_potentielles }})</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": secteurActivites|last.nomPourTitle|lower } %}
{% if index < half %}
<li>
{% if element.nb_cibles_potentielles > 0 %}
<a href="{{ path('reprendre_entreprise_cible_potentielle_secteur_activite', {'slug' : element.nomSecteurActivite|slugify, 'idSecteurActivite' : element.idSecteurActivite, 'codePays' : codePaysWithUnderScore }) }}"
title="{{ translate("cibles potentielles %$nomPourTitle%$",lang,"","M", "", arrayVarsTrans) | raw }}">
{{ element.nomSecteurActivite }} ({{ element.nb_cibles_potentielles }})
</a>
{% else %}
<span class="disabled-link">{{ element.nomSecteurActivite }} ({{ element.nb_cibles_potentielles }})</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": secteurActivites|last.nomPourTitle|lower } %}
{% if index >= half %}
<li>
{% if element.nb_cibles_potentielles > 0 %}
<a href="{{ path('reprendre_entreprise_cible_potentielle_secteur_activite', {'slug' : element.nomSecteurActivite|slugify, 'idSecteurActivite' : element.idSecteurActivite, 'codePays' : codePaysWithUnderScore }) }}"
title="{{ translate("cibles potentielles %$nomPourTitle%$",lang,"","M", "", arrayVarsTrans) | raw }}">
{{ element.nomSecteurActivite }} ({{ element.nb_cibles_potentielles }})
</a>
{% else %}
<span class="disabled-link">{{ element.nomSecteurActivite }} ({{ element.nb_cibles_potentielles }})</span>
{% endif %}
</li>
{% endif %}
{% endfor %}
</ul>
</div>
{% endif %}
</div>
</div>
</div>
<div class="col-12 text-right">
{% set arrayVarsTrans = {"nomPourTitle": secteurActivites|last.nomPourTitle } %}
<!-- <img src="https://content.fusacq.com/static/help-fusacq/fr/css/images/mini_logo.jpg" alt="Place des Commerces"> -->
<!-- <a href="https://www.placedescommerces.com/vente-commerce-{{ secteurActivites|last.nomSecteurActivite|slugify }},{{ secteurActivites|last.idSecteurActivite }}.html" target="_blank">{{ translate("reprendre un commerce %$nomPourTitle%$",lang,"","M", "", arrayVarsTrans) | raw }}</a> -->
</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">
<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('reprendre_entreprise_cible_potentielle_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("cibles potentielles %$nomPourTitle%$ %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
<i class="fas fa-arrow-circle-up fa-2x bleu"></i>
</a>
{% else %}
<i class="fas fa-arrow-circle-up fa-2x bleu"></i>
{% endif %}
</div>
<div class="lh18 ml-5">
<strong class="bleu">{{ localisations|last.nom_localisation }} ({{ nb_cibles_potentielles }})</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, "nomPourTitle": secteurActivites|last.nomPourTitle|lower } %}
<li>
{% if element.nb_cibles_potentielles > 0 %}
<a href="{{ path('reprendre_entreprise_cible_potentielle_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("cibles potentielles %$nomPourTitle%$ %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
{{ element.nom_localisation }} ({{ element.nb_cibles_potentielles }})
</a>
{% else %}
<span class="disabled-link">{{ element.nom_localisation }} ({{ element.nb_cibles_potentielles }})</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_cibles_potentielles > 0 %}
<a href="{{ path('reprendre_entreprise_cible_potentielle_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("cibles potentielles %$nomPourTitle%$ %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
{{ element.nom_localisation }} ({{ element.nb_cibles_potentielles }})
</a>
{% else %}
<span class="disabled-link">{{ element.nom_localisation }} ({{ element.nb_cibles_potentielles }})</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_cibles_potentielles > 0 %}
<a href="{{ path('reprendre_entreprise_cible_potentielle_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("cibles potentielles %$nomPourTitle%$ %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
{{ element.nom_localisation }} ({{ element.nb_cibles_potentielles }})
</a>
{% else %}
<span class="disabled-link">{{ element.nom_localisation }} ({{ element.nb_cibles_potentielles }})</span>
{% endif %}
</li>
{% endif %}
{% endfor %}
</ul>
</div>
{% endif %}
</div>
</div>
</div>
<div class="col-12 text-right">
{% set arrayVarsTrans = {"prefixe": localisations|last.prefixe, "nom_localisation" : localisations|last.nom_localisation } %}
<img src="https://content.fusacq.com/static/help-fusacq/fr/css/images/mini_logo.jpg" alt="Place des Commerces">
<a href="https://www.placedescommerces.com/vente-commerce-{{ localisations|last.nom_localisation|slugify }},{{ type }}{{ localisations|last.id_localisation }}.html" target="_blank">{{ translate("reprendre un commerce %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}</a>
</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('reprendre_entreprise_recherche_cibles_potentielles',{'codePays':codePaysWithUnderScore} ) }}?{{ string_params_without_page }}" class="text-decoration-none" title="{{ translate("modifiez votre recherche",lang,"","M") | raw }}">
<button type="submit" class="btn btn-bleu-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">{{ nb_annonces }} {{ translate("$$opportunite$${p|opportunites} %$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('reprendre_entreprise_annonce_cession_entreprise_localisation', {'slug':slug, 'type':type, 'idLocalisation':idLocalisation, 'codePays':codePaysWithUnderScore}) }}" class="bleu lh099 py-3">
<span class="fs2">{{ nb_entreprises }}</span><br>
{% set p = "" %}
{% if ( nb_entreprises > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="res_font">{{ translate("$$cession$${p|cessions}<br>d'entreprise",lang,"","m", p) | raw }}</span>
</a>
</div>
</div>
<div class="col-6 text-center my-3">
<div class="blanc lh099 py-3">
<a href="{{ path('reprendre_entreprise_cession_actif_localisation', {'slug':slug, 'type':type, 'idLocalisation':idLocalisation, 'codePays':codePaysWithUnderScore}) }}" class="bleu lh099 py-3">
<span class="fs2">{{ nb_actifs }}</span><br>
{% set p = "" %}
{% if ( nb_actifs > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="res_font">{{ translate("$$actif$${p|actifs} a<br>reprendre",lang,"","m", p) | raw }}</span>
</a>
</div>
</div>
<div class="col-6 text-center my-3 br_gris">
<div class="blanc bkg_bleu_2 lh099 py-3">
<span class="fs2">{{ nb_cibles_potentielles }}</span><br>
{% set p = "" %}
{% if ( nb_cibles_potentielles > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="res_font">{{ translate("$$cible<br>potentielle$${p|cibles<br>potentielles}",lang,"","m", p) | raw }}</span>
</div>
</div>
<div class="col-6 text-center my-3 pr-4">
<div class="blanc lh099 py-3">
<a href="{{ path('reprendre_entreprise_recherche_partenariat_localisation', {'slug':slug, 'type':type, 'idLocalisation':idLocalisation, 'codePays':codePaysWithUnderScore}) }}" class="bleu lh099 py-3">
<span class="fs2">{{ nb_recherches_partenariats }}</span><br>
{% set p = "" %}
{% if ( nb_recherches_partenariats > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="res_font">{{ translate("$$recherche$${p|recherches} de<br>partenariats",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="onglet4 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 br_gris lh13 order-4 order-sm-1">
<a class="nav-item nav-link" href="{{ path('reprendre_entreprise_annonce_cession_entreprise_localisation', {'slug':slug, 'type':type, 'idLocalisation':idLocalisation, 'codePays':codePaysWithUnderScore}) }}">
{% set p = "" %}
{% if ( nb_entreprises > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="fs2">{{ nb_entreprises }}</span><br><span class="fs13">{{ translate("$$cession$${p|cessions}<br>d'entreprise",lang,"","m", p) | raw }}</span>
</a>
</div>
<div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-2">
<a class="nav-item nav-link" href="{{ path('reprendre_entreprise_cession_actif_localisation', {'slug':slug, 'type':type, 'idLocalisation':idLocalisation, 'codePays':codePaysWithUnderScore}) }}">
{% set p = "" %}
{% if ( nb_actifs > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="fs2">{{ nb_actifs }}</span><br><span class="fs13">{{ translate("$$actif$${p|actifs} a<br>reprendre",lang,"","m", p) | raw }}</span>
</a>
</div>
<div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-3">
<div class="nav-item nav-link active">
{% set p = "" %}
{% if ( nb_cibles_potentielles > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="fs2">{{ nb_cibles_potentielles }}</span><br><span class="fs13">{{ translate("$$cible<br>potentielle$${p|cibles<br>potentielles}",lang,"","m", p) | raw }}</span>
</div>
</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('reprendre_entreprise_recherche_partenariat_localisation', {'slug':slug, 'type':type, 'idLocalisation':idLocalisation, 'codePays':codePaysWithUnderScore}) }}">
{% set p = "" %}
{% if ( nb_recherches_partenariats > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="fs2">{{ nb_recherches_partenariats }}</span><br><span class="fs13">{{ translate("$$recherche$${p|recherches} de<br>partenariats",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">{{ nb_annonces }} {{ translate("$$opportunite$${p|opportunites} %$nomPourTitle%$ 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('reprendre_entreprise_annonce_cession_entreprise_secteur_activite', {'slug':slug, 'idSecteurActivite': idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}" class="bleu lh099 py-3">
<span class="fs2">{{ nb_entreprises }}</span><br>
{% set p = "" %}
{% if ( nb_entreprises > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="res_font">{{ translate("$$cession$${p|cessions}<br>d'entreprise",lang,"","m", p) | raw }}</span>
</a>
</div>
</div>
<div class="col-6 text-center my-3">
<div class="blanc lh099 py-3">
<a href="{{ path('reprendre_entreprise_cession_actif_secteur_activite', {'slug':slug, 'idSecteurActivite':idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}" class="bleu lh099 py-3">
<span class="fs2">{{ nb_actifs }}</span><br>
{% set p = "" %}
{% if ( nb_actifs > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="res_font">{{ translate("$$actif$${p|actifs} a<br>reprendre",lang,"","m", p) | raw }}</span>
</a>
</div>
</div>
<div class="col-6 text-center my-3 br_gris">
<div class="blanc bkg_bleu_2 lh099 py-3">
<span class="fs2">{{ nb_cibles_potentielles }}</span><br>
{% set p = "" %}
{% if ( nb_cibles_potentielles > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="res_font">{{ translate("$$cible<br>potentielle$${p|cibles<br>potentielles}",lang,"","m", p) | raw }}</span>
</div>
</div>
<div class="col-6 text-center my-3 pr-4">
<div class="blanc lh099 py-3">
<a href="{{ path('reprendre_entreprise_recherche_partenariat_secteur_activite', {'slug': slug, 'idSecteurActivite' : idSecteurActivite, 'codePays': codePaysWithUnderScore}) }}" class="bleu lh099 py-3">
<span class="fs2">{{ nb_recherches_partenariats }}</span><br>
{% set p = "" %}
{% if ( nb_recherches_partenariats > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="res_font">{{ translate("$$recherche$${p|recherches} de<br>partenariats",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="onglet4 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 br_gris lh13 order-4 order-sm-1">
<a class="nav-item nav-link" href="{{ path('reprendre_entreprise_annonce_cession_entreprise_secteur_activite', {'slug':slug, 'idSecteurActivite': idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}">
{% set p = "" %}
{% if ( nb_entreprises > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="fs2">{{ nb_entreprises }}</span><br><span class="fs13">{{ translate("$$cession$${p|cessions}<br>d'entreprise",lang,"","m", p) | raw }}</span>
</a>
</div>
<div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-2">
<a class="nav-item nav-link" href="{{ path('reprendre_entreprise_cession_actif_secteur_activite', {'slug':slug, 'idSecteurActivite': idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}">
{% set p = "" %}
{% if ( nb_actifs > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="fs2">{{ nb_actifs }}</span><br><span class="fs13">{{ translate("$$actif$${p|actifs} a<br>reprendre",lang,"","m", p) | raw }}</span>
</a>
</div>
<div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-3">
<div class="nav-item nav-link active">
{% set p = "" %}
{% if ( nb_cibles_potentielles > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="fs2">{{ nb_cibles_potentielles }}</span><br><span class="fs13">{{ translate("$$cible<br>potentielle$${p|cibles<br>potentielles}",lang,"","m", p) | raw }}</span>
</div>
</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('reprendre_entreprise_recherche_partenariat_secteur_activite', {'slug': slug, 'idSecteurActivite' : idSecteurActivite, 'codePays': codePaysWithUnderScore}) }}">
{% set p = "" %}
{% if ( nb_recherches_partenariats > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="fs2">{{ nb_recherches_partenariats }}</span><br><span class="fs13">{{ translate("$$recherche$${p|recherches} de<br>partenariats",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">{{ nb_annonces }} {{ translate("$$opportunite$${p|opportunites} %$nomPourTitle%$ %$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('reprendre_entreprise_annonce_cession_entreprise_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}) }}" class="bleu lh099 py-3">
<span class="fs2">{{ nb_entreprises }}</span><br>
{% set p = "" %}
{% if ( nb_entreprises > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="res_font">{{ translate("$$cession$${p|cessions}<br>d'entreprise",lang,"","m", p) | raw }}</span>
</a>
</div>
</div>
<div class="col-6 text-center my-3">
<div class="blanc lh099 py-3">
<a href="{{ path('reprendre_entreprise_cession_actif_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}) }}" class="bleu lh099 py-3">
<span class="fs2">{{ nb_actifs }}</span><br>
{% set p = "" %}
{% if ( nb_actifs > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="res_font">{{ translate("$$actif$${p|actifs} a<br>reprendre",lang,"","m", p) | raw }}</span></a>
</div>
</div>
<div class="col-6 text-center my-3 br_gris">
<div class="blanc bkg_bleu_2 lh099 py-3">
<span class="fs2">{{ nb_cibles_potentielles }}</span><br>
{% set p = "" %}
{% if ( nb_cibles_potentielles > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="res_font">{{ translate("$$cible<br>potentielle$${p|cibles<br>potentielles}",lang,"","m", p) | raw }}</span>
</div>
</div>
<div class="col-6 text-center my-3 pr-4">
<div class="blanc lh099 py-3">
<a href="{{ path('reprendre_entreprise_recherche_partenariat_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}) }}" class="bleu lh099 py-3">
<span class="fs2">{{ nb_recherches_partenariats }}</span><br>
{% set p = "" %}
{% if ( nb_recherches_partenariats > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="res_font">{{ translate("$$recherche$${p|recherches} de<br>partenariats",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="onglet4 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 br_gris lh13 order-4 order-sm-1">
<a class="nav-item nav-link" href="{{ path('reprendre_entreprise_annonce_cession_entreprise_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}) }}">
{% set p = "" %}
{% if ( nb_entreprises > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="fs2">{{ nb_entreprises }}</span><br><span class="fs13">{{ translate("$$cession$${p|cessions}<br>d'entreprise",lang,"","m", p) | raw }}</span>
</a>
</div>
<div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-2">
<a class="nav-item nav-link" href="{{ path('reprendre_entreprise_cession_actif_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}) }}">
{% set p = "" %}
{% if ( nb_actifs > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="fs2">{{ nb_actifs }}</span><br><span class="fs13">{{ translate("$$actif$${p|actifs} a<br>reprendre",lang,"","m", p) | raw }}</span>
</a>
</div>
<div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-3">
<div class="nav-item nav-link active">
{% set p = "" %}
{% if ( nb_cibles_potentielles > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="fs2">{{ nb_cibles_potentielles }}</span><br><span class="fs13">{{ translate("$$cible<br>potentielle$${p|cibles<br>potentielles}",lang,"","m", p) | raw }}</span>
</div>
</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('reprendre_entreprise_recherche_partenariat_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}) }}">
{% set p = "" %}
{% if ( nb_recherches_partenariats > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="fs2">{{ nb_recherches_partenariats }}</span><br><span class="fs13">{{ translate("$$recherche$${p|recherches} de<br>partenariats",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">{{ nb_annonces }} {{ translate("$$opportunite$${p|opportunites} 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('reprendre_entreprise_resultats_annonces_cession_entreprise',{'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="bleu lh099 py-3">
<span class="fs2">{{ nb_entreprises }}</span><br>
{% set p = "" %}
{% if ( nb_entreprises > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="res_font">{{ translate("$$cession$${p|cessions}<br>d'entreprise",lang,"","m", p) | raw }}</span>
</a>
</div>
</div>
<div class="col-6 text-center my-3">
<div class="blanc lh099 py-3">
<a href="{{ path('reprendre_entreprise_resultats_cession_actif',{'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="bleu lh099 py-3">
<span class="fs2">{{ nb_actifs }}</span><br>
{% set p = "" %}
{% if ( nb_actifs > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="res_font">{{ translate("$$actif$${p|actifs} a<br>reprendre",lang,"","m", p) | raw }}</span>
</a>
</div>
</div>
<div class="col-6 text-center my-3 br_gris">
<div class="blanc bkg_bleu_2 lh099 py-3">
<span class="fs2">{{ nb_cibles_potentielles }}</span><br>
{% set p = "" %}
{% if ( nb_cibles_potentielles > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="res_font">{{ translate("$$cible<br>potentielle$${p|cibles<br>potentielles}",lang,"","m", p) | raw }}</span>
</div>
</div>
<div class="col-6 text-center my-3 pr-4">
<div class="blanc lh099 py-3">
<a href="{{ path('reprendre_entreprise_resultats_recherches_partenariat',{'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="bleu lh099 py-3">
<span class="fs2">{{ nb_recherches_partenariats }}</span><br>
{% set p = "" %}
{% if ( nb_recherches_partenariats > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="res_font">{{ translate("$$recherche$${p|recherches} de<br>partenariats",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="onglet4 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 br_gris lh13 order-4 order-sm-1">
<a class="nav-item nav-link" href="{{ path('reprendre_entreprise_resultats_annonces_cession_entreprise',{'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
{% set p = "" %}
{% if ( nb_entreprises > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="fs2">{{ nb_entreprises }}</span><br><span class="fs13">{{ translate("$$cession$${p|cessions}<br>d'entreprise",lang,"","m", p) | raw }}</span>
</a>
</div>
<div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-2">
<a class="nav-item nav-link" href="{{ path('reprendre_entreprise_resultats_cession_actif',{'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
{% set p = "" %}
{% if ( nb_actifs > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="fs2">{{ nb_actifs }}</span><br><span class="fs13">{{ translate("$$actif$${p|actifs} a<br>reprendre",lang,"","m", p) | raw }}</span>
</a>
</div>
<div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-3">
<div class="nav-item nav-link active">
{% set p = "" %}
{% if ( nb_cibles_potentielles > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="fs2">{{ nb_cibles_potentielles }}</span><br><span class="fs13">{{ translate("$$cible<br>potentielle$${p|cibles<br>potentielles}",lang,"","m", p) | raw }}</span>
</div>
</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('reprendre_entreprise_resultats_recherches_partenariat',{'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
{% set p = "" %}
{% if ( nb_recherches_partenariats > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="fs2">{{ nb_recherches_partenariats }}</span><br><span class="fs13">{{ translate("$$recherche$${p|recherches} de<br>partenariats",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 mb-5">
{% set p = "" %}
{% if ( nb_cibles_potentielles > 1 ) %}
{% set p = "p" %}
{% endif %}
<span class="fs18">{{ nb_cibles_potentielles }} {{ translate("$$cible potentielle$${p|cibles potentielles}",lang,"","m", p) | raw }} / {{ translate("$$participation de fonds$${p|participations de fonds}",lang,"","m", p) | raw }}</span><br>
<a href="#" data-toggle="modal" data-target="#modal-explication" title="" class="underlined">{{ translate('Que sont les "cibles potentielles" proposées par FUSACQ ?',lang,"","M") | raw }}</a>
</div>
</div>
<!--PAGINATION-->
<div class="row mt-3">
<div class="col-sm-12">
<nav aria-label="...">
{{ knp_pagination_render(liste_annonces) }}
</nav>
</div>
</div>
<!--FIN PAGINATION-->
<div class="row mt-3 mb-2">
<div class="col-md-7 offset-md-5 text-right mb-2 text-right">
<div class="row">
<div class="col-12 col-sm-4 pt-2 text-right">
<!-- <label for="idFromControlSelectTri">Trier par</label> -->
</div>
<div class="col-12 col-sm-8">
<select class="form-control" id="idFromControlSelectTri" v-on:change="sortBy($event)">
<option value="date_desc" {% if tri == "date_desc" or tri_default == 'date_desc' %}selected="selected"{% endif %}>{{ translate("date investissement plus recentes",lang,"","M") | raw }}</option>
<option value="ca_asc" {% if tri == "ca_asc" %}selected="selected"{% endif %}>{{ translate("CA plus petit",lang,"","M") | raw }}</option>
<option value="ca_desc" {% if tri == "ca_desc" or tri_default == 'ca_desc' %}selected="selected"{% endif %} >{{ translate("CA plus grand",lang,"","M") | raw }}</option>
</select>
</div>
</div>
</div>
</div>
<div class="row" >
<div class="col-12">
<!--ANNONCES -->
{% for index, annonce in liste_annonces %}
{% set lienAnnonce = path('participation_fonds_detail',
{
'slug':annonce.slug,
'idParticipation':annonce._get('id_societe'),
'codePays':codePaysWithUnderScore
}) ~ '?urlList=' ~ urlList ~ '&' ~ string_params ~ '&index=' ~ index ~ '&from=cibles_potentielles' %}
<div class="card mb-3 card-ie filet_gris">
<div class="card-body">
<div class="row">
{#
{% if has_service %}
{% set url = lienAnnonce ~ '&from=cibles_potentielles' %}
{% set modal = "" %}
{% else %}
{% set url = "#" %}
{% set modal = 'data-toggle=modal data-target=#modal-condition' %}
{% endif %}
#}
<div class="col-8 col-md-8 col-lg-9 col-xl-10">
<div class="mb-2">
<h5 class="titre_annonce"><a href="{{ lienAnnonce }}" title="{{ annonce._get('resume_activite') }}">{{ annonce._get('resume_activite') }}</a></h5>
{% if annonce.commande %}
<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">
<span class="nowrap_custom">{{ translate("CA",lang,"","M") | raw }} {{ annonce._get('annee_n') }} : <strong>{{ annonce.arrondi_ca | number_format(0, "", " ") }} k€ </strong> </span>
<span class="nowrap_custom">{{ translate("date d'investissement",lang,"","M") | raw }} <strong>{{ annonce.date_dernier_investissement_formated }}</strong></span>
<span class="nowrap_custom">{{ translate("ref.",lang,"","M") | raw }} : <strong>P{{ annonce._get('id_societe') }}</strong></span>
</div>
{% if has_service %}
<h5 class="titre_annonce"><a href="{{ lienAnnonce }}"title="">{{ annonce._get('raison_sociale') }}</a></h5>
{% endif %}
<i class="fas fa-map-marker-alt"></i> {{ annonce.nom_localisation }}
</div>
<div class="col-4 col-md-4 col-lg-3 col-xl-2">
<div class="row">
<div class="col-12 col-md-12 text-center">
<a href="{{ lienAnnonce }}" title="{{ annonce.nom_localisation }}"><img class="img-fluid" src="{{ annonce.carte }}" alt="{{ annonce.nom_localisation }}"></a>
</div>
</div>
</div>
<div class="col-4 col-md-4 col-lg-4 mt-2">
<a href="{{ lienAnnonce }}" title="{{ translate("voir les details",lang,"","M") | raw }}">
<button type="button" class="btn btn-bleu-annonce">
<span class="d-none d-xl-block">{{ translate("voir les details",lang,"","M") | raw }}</span>
<span class="d-xl-none">{{ translate("details",lang,"","M") | raw }}</span>
</button>
</a>
</div>
<!--
<div class="col-4 col-md-4 col-lg-4 text-center mt-2 pt-2 br_gris">
<a href="#" title="{{ translate("partager",lang,"","M") | raw }}" class="lien-contacter-deposant">
<i class="fas fa-envelope bleu"></i>
</a>
<a href="#" class="souligne cache_petit" title="{{ translate("partager",lang,"","M") | raw }}">{{ translate("partager",lang,"","M") | raw }}</a>
</div>
<div class="col-4 col-md-4 col-lg-4 text-right mt-2 pt-2">
<a href="#" title="{{ translate("sauvegarder",lang,"","M") | raw }}" class="">
<i class="fa-light fa-heart bleu"></i></a>
<a href="#" class="souligne cache_petit bleu" title="{{ translate("sauvegarder",lang,"","M") | raw }}" id_u="" id_a="384501">{{ translate("sauvegarder",lang,"","M") | raw }}</a>
</div>
-->
</div>
</div>
</div>
{% endfor %}
<!--FIN ANNONCES -->
</div>
</div>
<!--PAGINATION-->
<div class="row mt-3">
<div class="col-sm-12">
<nav aria-label="...">
{{ knp_pagination_render(liste_annonces) }}
</nav>
</div>
</div>
<!--FIN PAGINATION-->
</div><!--FIN COLONNE DROITE -->
</div> <!--FIN ROW CONTAINER -->
</div> <!--FIN CONTAINER -->
<!--MODAL-->
<div class="modal fade" id="modal-explication" tabindex="-1" role="dialog" aria-labelledby="modal-explication-label" aria-hidden="true">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title bleu" id="modal-explication-label">{{ translate('que sont les "cibles potentielles" proposées par FUSACQ ?',lang,"","M", p) | raw }}</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body text-justify">
La liste que vous allez consulter sous l'intitulé "Cibles potentielles" présente <strong>des sociétés ayant des fonds d'investissement à leur capital</strong>, communément appelées <strong>des participations de fonds d'investissement.</strong><br><br>
<em>Après plusieurs années d'investissement (souvent au bout de 4-5 ans), les fonds envisagent logiquement de sortir de ces sociétés notamment via la vente de leur participation. Cela passe la plupart du temps par un rachat global de la société, largement préféré ces dernières années à l'introduction en bourse.<br><br>
Attention les sociétés listées ci-après ne sont donc pas en vente. Cependant, elles sont sans doute plus ouvertes que d'autres à la discussion si vous cherchez des cibles de reprise / build-up / croissance externe.</em> <br><br>
{% if show_modal %}
<div class="form-check-inline col-12">
<label class="form-check-label">
<input type="checkbox" class="form-check-input" id="dont-show-modal" data-cookie-name="show_modal_cible_potentielle">{{ translate("ne plus afficher la prochaine fois",lang,"","M", p) | raw }}
</label>
</div>
{% endif %}
</div>
<div class="modal-footer">
<button type="button" class="btn btn-bleu-annonce" data-dismiss="modal">{{ translate("j'ai compris",lang,"","M", p) | raw }}</button>
</div>
</div>
</div>
</div>
<!--FIN MODAL-->
<!--MODAL 2-->
<!-- <div class="modal fade" id="modal-condition" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
{% set p = "" %}
{% if ( nb_cibles_potentielles > 1 ) %}
{% set p = "p" %}
{% endif %}
<h5 class="modal-title bleu" id="exampleModalLabel">{{ nb_cibles_potentielles }} {{ translate("$$cible potentielle$${p|cibles potentielles}",lang,"","m", p) | raw }} / {{ translate("$$participation de fonds d'investissement$${p|participations de fonds d'investissement}",lang,"","m", p) | raw }}</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body text-center">
Pour accéder aux fiches des participations vous devez :<br><br><br>
- Souscrire un abonnement simple à <a href="{{ path('tarifs_index', {'codePays' : codePaysWithUnderScore}) }}#participations">l'Annuaire des participations</a><br>
<b>ou</b><br>
- Adhérer à l'offre <a href="{{ path('offreFusacqExpert', {'codePays': codePaysWithUnderScore}) }}" target="_blank"><strong>FUSACQ Expert</strong></a> qui comprend l'ensemble des services Fusacq<br><br><br>
<strong>Pour plus de détails contactez nous au 01 48 28 24 24</strong><br>
</div>
<div class="modal-footer">
<div class="col-6 text-center">Je suis déjà adhèrent <br><a href="#" data-toggle="modal" data-target="#modal-connexion" title=""><button type="button" class="btn btn-fusacq_expert">Je me connecte</button></a></div>
<div class="col-6 text-center">Les offres et les tarifs<br>
<a href="{{ path('offreFusacqExpert', {'codePays': codePaysWithUnderScore }) }}" target="_blank">
<button type="button" class="btn btn-fusacq_expert ">Fusacq Expert</button>
</a>
</div>
</div>
</div>
</div>
</div>-->
<!--FIN MODAL 2-->
<!--MODAL 2-->
<div class="modal fade" id="modal-condition" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
{% set p = "" %}
{% if ( nb_cibles_potentielles > 1 ) %}
{% set p = "p" %}
{% endif %}
<h5 class="modal-title bleu_fusacq font_600" id="exampleModalLabel">{{ nb_cibles_potentielles }} {{ translate("$$cible potentielle$${p|cibles potentielles}",lang,"","m", p) | raw }} / {{ translate("$$participation de fonds d'investissement$${p|participations de fonds d'investissement}",lang,"","m", p) | raw }}</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body text-justify">
{{ translate("pour accéder aux fiches des participations vous devez",lang,"","M") | raw }} :<br><br>
• {{ translate("souscrire un abonnement simple à l'<strong>Annuaire des participations</strong>",lang,"","M") | raw }}<br>
<div class="text-center pt-2"><a href="/tarifs/tarifs.php_fr_#participations" class="button-rond" role="button" aria-pressed="true">{{ translate("commander",lang,"","M") | raw }}</a></div>
ou<br><br>
• <a href="{{ path('offreFusacqExpert', {'codePays' : codePaysWithUnderScore}) }}" class="fullsouligne"><strong>{{ translate("adhérer à l'offre FUSACQ Expert",lang,"","M") | raw }}</strong></a>{{ translate("qui comprend l'ensemble des services Fusacq",lang,"","M") | raw }} <br>
{{ translate("Pour plus d'informations contactez nous au <strong>01 48 28 24 24</strong>",lang,"","M") | raw }}<br><br>
{% if app.session.all.user is not defined %}
<div class="text-center pt-5" style="border-top: 1px solid #CCCCCC;">
{{ translate("J'ai déjà accès à l'<strong>Annuaire des participations</strong>",lang,"","M") | raw }}
</div>
<div class="text-center pt-2">
<a href="#" data-toggle="modal" data-target="#modal-connexion" class="" role="button" aria-pressed="true">
<button id="connect-modal-2" type="button" class="button-rond-blanc">{{ translate("Je me connecte",lang,"","M") | raw }}</button>
</a>
<br><br>
</div>
{% endif %}
</div>
</div>
</div>
</div>
<!--FIN MODAL 2-->
<!--MODAL 3-->
<div class="modal fade" id="modal-connexion" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Connexion</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body mt-3">
{{ render_esi(controller(
'App\\Controller\\SecurityController::login',
{"from": "cible_potentielle" }
)) | spaceless }}
</div>
</div>
</div>
</div>
<!--FIN MODAL 3-->
{% endblock %}
{% block javascripts %}
{{ parent() }}
{% if show_modal %}
<script>
$(function () {
$('#modal-explication').modal('show');
});
</script>
{% endif %}
<script type="module" data-name="{{ codePaysWithUnderScore }}" id="codePaysParam" src="{{ asset('build/js/reprendre_entreprise/cible_potentielle.js') }}"></script>
<script src="{{ asset('build/js/modal.js') }}"></script>
{% if not has_service %}
<script>
$(function(){
$('#rechercher').on('click', function(){
$('#modal-condition').modal();
return false;
});
$('#connect-modal-2').on('click', function(){
$('#modal-condition').modal('hide');
$('#modal-connexion').modal('show');
});
});
</script>
{% endif %}
{% endblock %}