templates/vendre_entreprise/acquereur_historique.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block stylesheets %}  {{ parent() }}
  3.     <link rel="stylesheet" href="{{ asset('build/css/annuaires/repreneurs/repreneurs_recherche.css') }}">
  4. {% endblock %}
  5. {% block body %}
  6.     {% include 'assets/assets_vuejs.html.twig' %}
  7.     <!-- Menu  -->
  8.     {{ render_esi(controller(
  9.       'App\\Controller\\CoreController::menu',
  10.       {   "lang": lang,
  11.           "currentRoute":currentRoute,
  12.           "codePays": codePaysWithUnderScore }
  13.     )) | spaceless }}
  14.     <!-- Menu  -->
  15.     <!-- Publicite  -->
  16.     {% include 'includes/publicite.html.twig' %}
  17.     <!-- Publicite  -->
  18.     <div class="container" id="app">
  19.         <div class="row">
  20.             <!--COLONNE GAUCHE -->
  21.             {% include 'includes/colonne_gauche_acquereurs_historiques.html.twig' %}
  22.             <!--FIN COLONNE GAUCHE -->
  23.             <!--COLONNE DROITE -->
  24.             <div class="col-12 col-lg-9 bkg_blanc">
  25.                 <!-- ARIANE -->
  26.                 <nav aria-label="breadcrumb" class="d-none d-sm-block">
  27.                     <ol class="breadcrumb">
  28.                         <li class="breadcrumb-item"><a href="{{ path('index',{'codePays':codePays}) }}">{{ translate("accueil",lang,"","M") | raw }}</a></li>
  29.                         <li class="breadcrumb-item"><a href="{{ path('vendre_entreprise_annonces_acquisition_entreprise',{'codePays':codePaysWithUnderScore}) }}">{{ translate("vendre une entreprise",lang,"","M") | raw }}</a></li>
  30.                             {% if idLocalisation and not idSecteurActivite %}
  31.                             <li class="breadcrumb-item"><a href="{{ path('vendre_entreprise_resultats_acquereur_historique', {'codePays' : codePaysWithUnderScore}) }}" title="{{ translate("acheteurs potentiels",lang,"","M") | raw }} - {{ translate("acquereurs historiques",lang,"","M") | raw }}">{{ translate("acheteurs potentiels",lang,"","M") | raw }} - {{ translate("acquereurs historiques",lang,"","M") | raw }}</a></li>
  32.                                 {% for index, localisation in localisations %}
  33.                                     {% if index == 0 %}
  34.                                         {% set type_loc = "p" %}
  35.                                     {% elseif index == 1 %}
  36.                                         {% set type_loc = "r" %}
  37.                                     {% else %}
  38.                                         {% set type_loc = "d" %}
  39.                                     {% endif %}
  40.                                 {% if localisation != localisations|last %}
  41.                                     {% set arrayVarsTrans =  {"prefixe": localisation.prefixe, "nom_localisation" : localisation.nom_localisation }  %}
  42.                                     <li class="breadcrumb-item">
  43.                                         <a href="{{ path('vendre_entreprise_acquereur_historique_localisation', {'slug': localisation.nom_localisation|slugify, 'type': type_loc, 'idLocalisation': localisation.id_localisation, 'codePays': codePaysWithUnderScore}) }}"
  44.                                            title="{{ translate("acquereurs historiques %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  45.                                             {{ localisation.nom_localisation }}
  46.                                         </a>
  47.                                     </li>
  48.                                 {% else %}
  49.                                     <li class="breadcrumb-item active" aria-current="page">{{ localisation.nom_localisation }}</li>
  50.                                     {% endif %}
  51.                                 {% endfor %}
  52.                             {% elseif idSecteurActivite and not idLocalisation %}
  53.                             <li class="breadcrumb-item"><a href="{{ path('vendre_entreprise_resultats_acquereur_historique', {'codePays' : codePaysWithUnderScore}) }}" title="{{ translate("acheteurs potentiels",lang,"","M") | raw }} - {{ translate("acquereurs historiques",lang,"","M") | raw }}">{{ translate("acheteurs potentiels",lang,"","M") | raw }} - {{ translate("acquereurs historiques",lang,"","M") | raw }}</a></li>
  54.                                 {% for index, secteurActivite in secteurActivites %}
  55.                                     {% if secteurActivite != secteurActivites|last %}
  56.                                         {% set arrayVarsTrans =  {"nomPourTitle": secteurActivite.nomPourTitle|lower }  %}
  57.                                     <li class="breadcrumb-item">
  58.                                         <a href="{{ path('vendre_entreprise_acquereur_historique_secteur_activite', {'slug': secteurActivite.nomSecteurActivite|slugify, 'idSecteurActivite': secteurActivite.idSecteurActivite, 'codePays': codePaysWithUnderScore}) }}"
  59.                                            title="{{ translate("acquereurs historiques %$nomPourTitle%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  60.                                             {{ secteurActivite.nomSecteurActivite }}
  61.                                         </a>
  62.                                     </li>
  63.                                 {% else %}
  64.                                     <li class="breadcrumb-item active" aria-current="page">{{ secteurActivite.nomSecteurActivite }}</li>
  65.                                     {% endif %}
  66.                                 {% endfor %}
  67.                             {% elseif idSecteurActivite and idLocalisation %}
  68.                             <li class="breadcrumb-item"><a href="{{ path('vendre_entreprise_resultats_acquereur_historique', {'codePays' : codePaysWithUnderScore}) }}" title="{{ translate("acheteurs potentiels",lang,"","M") | raw }} - {{ translate("acquereurs historiques",lang,"","M") | raw }}">{{ translate("acheteurs potentiels",lang,"","M") | raw }} - {{ translate("acquereurs historiques",lang,"","M") | raw }}</a></li>
  69.                                 {% for index, secteurActivite in secteurActivites %}
  70.                                     {% set arrayVarsTrans =  {"nomPourTitle": secteurActivite.nomPourTitle|lower }  %}
  71.                                 <li class="breadcrumb-item">
  72.                                     <a href="{{ path('vendre_entreprise_acquereur_historique_secteur_activite', {'slug': secteurActivite.nomSecteurActivite|slugify, 'idSecteurActivite': secteurActivite.idSecteurActivite, 'codePays': codePaysWithUnderScore}) }}"
  73.                                        title="{{ translate("acquereurs historiques %$nomPourTitle%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  74.                                         {{ secteurActivite.nomSecteurActivite }}
  75.                                     </a>
  76.                                 </li>
  77.                             {% endfor %}
  78.                             {% for index, localisation in localisations %}
  79.                                 {% if index == 0 %}
  80.                                     {% set type_loc = "p" %}
  81.                                 {% elseif index == 1 %}
  82.                                     {% set type_loc = "r" %}
  83.                                 {% else %}
  84.                                     {% set type_loc = "d" %}
  85.                                 {% endif %}
  86.                                 {% if localisation != localisations|last %}
  87.                                     {% set arrayVarsTrans =  {"prefixe": localisation.prefixe, "nom_localisation" : localisation.nom_localisation, "nomPourTitle": secteurActivites|last.nomPourTitle|lower }  %}
  88.                                     <li class="breadcrumb-item">
  89.                                         <a href="{{ path('vendre_entreprise_acquereur_historique_croise', {'nomLocalisation': localisation.nom_localisation|slugify, 'nomSecteurActivite': secteurActivites|last.nomSecteurActivite|slugify, 'type': type_loc, 'idLocalisation': localisation.id_localisation, 'idSecteurActivite': secteurActivites|last.idSecteurActivite, 'codePays': codePaysWithUnderScore}) }}"
  90.                                            title="{{ translate("acquereurs historiques %$nomPourTitle%$ %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  91.                                             {{ localisation.nom_localisation }}
  92.                                         </a>
  93.                                     </li>
  94.                                 {% else %}
  95.                                     <li class="breadcrumb-item active" aria-current="page">{{ localisation.nom_localisation }}</li>
  96.                                     {% endif %}
  97.                                 {% endfor %}
  98.                             {% else %}
  99.                             <li class="breadcrumb-item active" aria-current="page">{{ translate("acheteurs potentiels",lang,"","M") | raw }} - {{ translate("acquereurs historiques",lang,"","M") | raw }}</li>
  100.                             {% endif %}
  101.                     </ol>
  102.                 </nav>
  103.                 <!-- FIN ARIANE -->
  104.                 {% if app.session.flashbag.peek('error')|length > 0 %}
  105.                     <div class="alert alert-danger" role="alert">
  106.                         {% for message in app.flashes('error') %}
  107.                             {{ message }}<br>
  108.                         {% endfor %}
  109.                     </div>
  110.                 {% endif %}
  111.                 {% if app.session.flashbag.peek('success')|length > 0 %}
  112.                     <div class="alert alert-success" role="alert">
  113.                         {% for message in app.flashes('success') %}
  114.                             - {{ message }}<br>
  115.                         {% endfor %}
  116.                     </div>
  117.                 {% endif %}
  118.                 {% if idLocalisation or idSecteurActivite %}
  119.                     <div class="row mt-4">
  120.                         <div class="col-12 mb-1 mt-3">
  121.                             <h1 class="vert fs2">{{ translate("acquereurs historiques",lang,"","M") | raw }} -
  122.                                 {% if idLocalisation and not idSecteurActivite %}
  123.                                     {{ localisations|last.nom_localisation }} {% if noms_ville %}({{ noms_ville }}...){% endif %}
  124.                                 {% elseif idSecteurActivite and not idLocalisation %}
  125.                                     {{ secteurActivites|last.nomSecteurActivite }}
  126.                                 {% elseif idSecteurActivite and idLocalisation %}
  127.                                     {{ secteurActivites|last.nomSecteurActivite }} {{ localisations|last.prefixe }} {{ localisations|last.nom_localisation }}
  128.                                 {% endif %}
  129.                             </h1>
  130.                         </div>
  131.                     </div>
  132.                 {% endif %}
  133.                 {% if idLocalisation and not idSecteurActivite %}
  134.                     <div class="row">
  135.                         <div class="col-12">
  136.                             <div class="card no_shadow mb-3 card-ie">
  137.                                 <div class="card-body">
  138.                                     <div class="row">
  139.                                         <div class="col-12 mt-1">
  140.                                             <div class="float-left">
  141.                                                 {% if prev_localisation %}
  142.                                                     {% set arrayVarsTrans =  {"prefixe": prev_localisation.prefixe, "nom_localisation" : prev_localisation.nom_localisation }  %}
  143.                                                     <a href="{{ path('vendre_entreprise_acquereur_historique_localisation', {'slug': prev_localisation.nom_localisation|slugify, 'type': prev_localisation.type, 'idLocalisation': prev_localisation.id_localisation, 'codePays': codePaysWithUnderScore}) }}" title="{{ translate("acquereurs historiques %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  144.                                                         <i class="fas fa-arrow-circle-up fa-2x vert"></i>
  145.                                                     </a>
  146.                                                 {% else %}
  147.                                                     <i class="fas fa-arrow-circle-up fa-2x vert"></i>
  148.                                                 {% endif %}
  149.                                             </div>
  150.                                             <div class="lh18 ml-5">
  151.                                                 <strong class="vert">{{ localisations|last.nom_localisation }} ({{ nb_acquereurs_historiques }})</strong>
  152.                                             </div>
  153.                                         </div>
  154.                                         {% set nb_elements = sous_localisations_numbers | length %}
  155.                                         {% if nb_elements > 0 and nb_elements <= 5 %}
  156.                                             <div class="col-12 pt-2 mt-3">
  157.                                                 <ul class="cat_regions">
  158.                                                     {% for element in sous_localisations_numbers %}
  159.                                                         {% set arrayVarsTrans =  {"prefixe": element.prefixe, "nom_localisation" : element.nom_localisation }  %}
  160.                                                         <li>
  161.                                                             {% if element.nb_acquereurs_historiques > 0 %}
  162.                                                                 <a href="{{ path('vendre_entreprise_acquereur_historique_localisation', {'slug' : element.nom_localisation|slugify, 'idLocalisation' : element.id_localisation, 'type' : element.type, 'codePays' : codePaysWithUnderScore }) }}" title="{{ translate("acquereurs historiques %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  163.                                                                     {{ element.nom_localisation }} ({{ element.nb_acquereurs_historiques }})
  164.                                                                 </a>
  165.                                                             {% else %}
  166.                                                                 <span class="disabled-link">{{ element.nom_localisation }} ({{ element.nb_acquereurs_historiques }})</span>
  167.                                                             {% endif %}
  168.                                                         </li>
  169.                                                     {% endfor %}
  170.                                                 </ul>
  171.                                             </div>
  172.                                         {% elseif nb_elements > 5 %}
  173.                                             {% set half = ((sous_localisations_numbers | length) / 2)| round(0, 'ceil') %}
  174.                                             <div class="col-6 pt-2 mt-3">
  175.                                                 <ul class="cat_regions">
  176.                                                     {% for index, element in sous_localisations_numbers %}
  177.                                                         {% set arrayVarsTrans =  {"prefixe": element.prefixe, "nom_localisation" : element.nom_localisation }  %}
  178.                                                         {% if index < half %}
  179.                                                             <li>
  180.                                                                 {% if element.nb_acquereurs_historiques > 0 %}
  181.                                                                     <a href="{{ path('vendre_entreprise_acquereur_historique_localisation', {'slug' : element.nom_localisation|slugify, 'idLocalisation' : element.id_localisation, 'type' : element.type, 'codePays' : codePaysWithUnderScore }) }}" title="{{ translate("acquereurs historiques %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  182.                                                                         {{ element.nom_localisation }} ({{ element.nb_acquereurs_historiques }})
  183.                                                                     </a>
  184.                                                                 {% else %}
  185.                                                                     <span class="disabled-link">{{ element.nom_localisation }} ({{ element.nb_acquereurs_historiques }})</span>
  186.                                                                 {% endif %}
  187.                                                             </li>
  188.                                                         {% endif %}
  189.                                                     {% endfor %}
  190.                                                 </ul>
  191.                                             </div>
  192.                                             <div class="col-6 pt-2 mt-3">
  193.                                                 <ul class="cat_regions">
  194.                                                     {% for index, element in sous_localisations_numbers %}
  195.                                                         {% set arrayVarsTrans =  {"prefixe": element.prefixe, "nom_localisation" : element.nom_localisation }  %}
  196.                                                         {% if index >= half %}
  197.                                                             <li>
  198.                                                                 {% if element.nb_acquereurs_historiques > 0 %}
  199.                                                                     <a href="{{ path('vendre_entreprise_acquereur_historique_localisation', {'slug' : element.nom_localisation|slugify, 'idLocalisation' : element.id_localisation, 'type' : element.type, 'codePays' : codePaysWithUnderScore }) }}" title="{{ translate("acquereurs historiques %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  200.                                                                         {{ element.nom_localisation }} ({{ element.nb_acquereurs_historiques }})
  201.                                                                     </a>
  202.                                                                 {% else %}
  203.                                                                     <span class="disabled-link">{{ element.nom_localisation }} ({{ element.nb_acquereurs_historiques }})</span>
  204.                                                                 {% endif %}
  205.                                                             </li>
  206.                                                         {% endif %}
  207.                                                     {% endfor %}
  208.                                                 </ul>
  209.                                             </div>
  210.                                         {% endif %}
  211.                                     </div>
  212.                                 </div>
  213.                             </div>
  214.                         </div>
  215.                     </div>
  216.                 {% elseif idSecteurActivite and not idLocalisation %}
  217.                     <div class="row">
  218.                         <div class="col-12">
  219.                             <div class="card no_shadow mb-3 card-ie">
  220.                                 <div class="card-body">
  221.                                     <div class="row">
  222.                                         <div class="col-12 mt-1">
  223.                                             <div class="float-left">
  224.                                                 {% if prev_secteur %}
  225.                                                     {% set arrayVarsTrans =  {"nomPourTitle": prev_secteur.nomPourTitle|lower }  %}
  226.                                                     <a href="{{ path('vendre_entreprise_acquereur_historique_secteur_activite', {'slug': prev_secteur.nomSecteurActivite|slugify, 'idSecteurActivite': prev_secteur.idSecteurActivite, 'codePays': codePaysWithUnderScore}) }}" title="{{ translate("acquereurs historiques %$nomPourTitle%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  227.                                                         <i class="fas fa-arrow-circle-up fa-2x vert"></i>
  228.                                                     </a>
  229.                                                 {% else %}
  230.                                                     <a href="{{ path('vendre_entreprise_annonces_acquisition_entreprise', {'codePays': codePaysWithUnderScore }) }}" title="{{ translate("toutes les opportunités", lang, "", "M") }}">
  231.                                                         <i class="fas fa-arrow-circle-up fa-2x vert"></i>
  232.                                                     </a>
  233.                                                 {% endif %}
  234.                                             </div>
  235.                                             <div class="lh18 ml-5">
  236.                                                 <strong class="vert">{{ secteurActivites|last.nomSecteurActivite }} ({{ nb_acquereurs_historiques }})</strong>
  237.                                             </div>
  238.                                         </div>
  239.                                         {% set nb_elements = sous_secteurs_numbers | length %}
  240.                                         {% if nb_elements > 0 and nb_elements <= 5 %}
  241.                                             <div class="col-12 pt-2 mt-3">
  242.                                                 <ul class="cat_regions">
  243.                                                     {% for element in sous_secteurs_numbers %}
  244.                                                         {% set arrayVarsTrans =  {"nomPourTitle": element.nomPourTitle|lower }  %}
  245.                                                         <li>
  246.                                                             {% if element.nb_acquereurs_historiques > 0 %}
  247.                                                                 <a href="{{ path('vendre_entreprise_acquereur_historique_secteur_activite', {'slug' : element.nomSecteurActivite|slugify, 'idSecteurActivite' : element.idSecteurActivite, 'codePays' : codePaysWithUnderScore }) }}"
  248.                                                                    title="{{ translate("acquereurs historiques %$nomPourTitle%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  249.                                                                     {{ element.nomSecteurActivite }} ({{ element.nb_acquereurs_historiques }})
  250.                                                                 </a>
  251.                                                             {% else %}
  252.                                                                 <span class="disabled-link">{{ element.nomSecteurActivite }} ({{ element.nb_acquereurs_historiques }})</span>
  253.                                                             {% endif %}
  254.                                                         </li>
  255.                                                     {% endfor %}
  256.                                                 </ul>
  257.                                             </div>
  258.                                         {% elseif nb_elements > 5 %}
  259.                                             {% set half = ((sous_secteurs_numbers | length) / 2)| round(0, 'ceil') %}
  260.                                             <div class="col-6 pt-2 mt-3">
  261.                                                 <ul class="cat_regions">
  262.                                                     {% for index, element in sous_secteurs_numbers %}
  263.                                                         {% set arrayVarsTrans =  {"nomPourTitle": element.nomPourTitle|lower }  %}
  264.                                                         {% if index < half %}
  265.                                                             <li>
  266.                                                                 {% if element.nb_acquereurs_historiques > 0 %}
  267.                                                                     <a href="{{ path('vendre_entreprise_acquereur_historique_secteur_activite', {'slug' : element.nomSecteurActivite|slugify, 'idSecteurActivite' : element.idSecteurActivite, 'codePays' : codePaysWithUnderScore }) }}"
  268.                                                                        title="{{ translate("acquereurs historiques %$nomPourTitle%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  269.                                                                         {{ element.nomSecteurActivite }} ({{ element.nb_acquereurs_historiques }})
  270.                                                                     </a>
  271.                                                                 {% else %}
  272.                                                                     <span class="disabled-link">{{ element.nomSecteurActivite }} ({{ element.nb_acquereurs_historiques }})</span>
  273.                                                                 {% endif %}
  274.                                                             </li>
  275.                                                         {% endif %}
  276.                                                     {% endfor %}
  277.                                                 </ul>
  278.                                             </div>
  279.                                             <div class="col-6 pt-2 mt-3">
  280.                                                 <ul class="cat_regions">
  281.                                                     {% for index, element in sous_secteurs_numbers %}
  282.                                                         {% set arrayVarsTrans =  {"nomPourTitle": element.nomPourTitle|lower }  %}
  283.                                                         {% if index >= half %}
  284.                                                             <li>
  285.                                                                 {% if element.nb_acquereurs_historiques > 0 %}
  286.                                                                     <a href="{{ path('vendre_entreprise_acquereur_historique_secteur_activite', {'slug' : element.nomSecteurActivite|slugify, 'idSecteurActivite' : element.idSecteurActivite, 'codePays' : codePaysWithUnderScore }) }}"
  287.                                                                        title="{{ translate("acquereurs historiques %$nomPourTitle%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  288.                                                                         {{ element.nomSecteurActivite }} ({{ element.nb_acquereurs_historiques }})
  289.                                                                     </a>
  290.                                                                 {% else %}
  291.                                                                     <span class="disabled-link">{{ element.nomSecteurActivite }} ({{ element.nb_acquereurs_historiques }})</span>
  292.                                                                 {% endif %}
  293.                                                             </li>
  294.                                                         {% endif %}
  295.                                                     {% endfor %}
  296.                                                 </ul>
  297.                                             </div>
  298.                                         {% endif %}
  299.                                     </div>
  300.                                 </div>
  301.                             </div>
  302.                         </div>
  303.                     </div>
  304.                 {% elseif idSecteurActivite and idLocalisation %}
  305.                     <div class="row">
  306.                         <div class="col-12">
  307.                             <div class="card no_shadow mb-3 card-ie">
  308.                                 <div class="card-body">
  309.                                     <div class="row">
  310.                                         <div class="col-12 mt-1 mb-3">
  311.                                             <div class="float-left">
  312.                                                 {% if prev_localisation %}
  313.                                                     {% set arrayVarsTrans =  {"prefixe": prev_localisation.prefixe, "nom_localisation" : prev_localisation.nom_localisation, "nomPourTitle": secteurActivites|last.nomPourTitle|lower }  %}
  314.                                                     <a href="{{ path('vendre_entreprise_acquereur_historique_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}) }}"
  315.                                                        title="{{ translate("acquereurs historiques %$nomPourTitle%$ %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  316.                                                         <i class="fas fa-arrow-circle-up fa-2x vert"></i>
  317.                                                     </a>
  318.                                                 {% else %}
  319.                                                     <i class="fas fa-arrow-circle-up fa-2x vert"></i>
  320.                                                 {% endif %}
  321.                                             </div>
  322.                                             <div class="lh18 ml-5">
  323.                                                 <strong class="vert">{{ localisations|last.nom_localisation }} ({{ nb_acquereurs_historiques }})</strong>
  324.                                             </div>
  325.                                         </div>
  326.                                         {% set nb_elements = sous_localisations_numbers | length %}
  327.                                         {% if nb_elements > 0 and nb_elements <= 5 %}
  328.                                             <div class="col-12 pt-2">
  329.                                                 <ul class="cat_regions">
  330.                                                     {% for element in sous_localisations_numbers %}
  331.                                                         {% set arrayVarsTrans =  {"prefixe": element.prefixe, "nom_localisation" : element.nom_localisation, "nomPourTitle": secteurActivites|last.nomPourTitle|lower }  %}
  332.                                                         <li>
  333.                                                             {% if element.nb_acquereurs_historiques > 0 %}
  334.                                                                 <a href="{{ path('vendre_entreprise_acquereur_historique_croise', {'nomLocalisation' : element.nom_localisation|slugify, 'nomSecteurActivite' : secteurActivites|last.nomSecteurActivite|slugify, 'idLocalisation' : element.id_localisation, 'type' : element.type, 'idSecteurActivite' : secteurActivites|last.idSecteurActivite, 'codePays' : codePaysWithUnderScore }) }}"
  335.                                                                    title="{{ translate("acquereurs historiques %$nomPourTitle%$ %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  336.                                                                     {{ element.nom_localisation }} ({{ element.nb_acquereurs_historiques }})
  337.                                                                 </a>
  338.                                                             {% else %}
  339.                                                                 <span class="disabled-link">{{ element.nom_localisation }} ({{ element.nb_acquereurs_historiques }})</span>
  340.                                                             {% endif %}
  341.                                                         </li>
  342.                                                     {% endfor %}
  343.                                                 </ul>
  344.                                             </div>
  345.                                         {% elseif nb_elements > 5 %}
  346.                                             {% set half = ((sous_localisations_numbers | length) / 2)| round(0, 'ceil') %}
  347.                                             <div class="col-6 pt-2 mt-3">
  348.                                                 <ul class="cat_regions">
  349.                                                     {% for index, element in sous_localisations_numbers %}
  350.                                                         {% set arrayVarsTrans =  {"prefixe": element.prefixe, "nom_localisation" : element.nom_localisation, "nomPourTitle": secteurActivites|last.nomPourTitle|lower }  %}
  351.                                                         {% if index < half %}
  352.                                                             <li>
  353.                                                                 {% if element.nb_acquereurs_historiques > 0 %}
  354.                                                                     <a href="{{ path('vendre_entreprise_acquereur_historique_croise', {'nomLocalisation' : element.nom_localisation|slugify, 'nomSecteurActivite' : secteurActivites|last.nomSecteurActivite|slugify, 'idLocalisation' : element.id_localisation, 'type' : element.type, 'idSecteurActivite' : secteurActivites|last.idSecteurActivite, 'codePays' : codePaysWithUnderScore }) }}"
  355.                                                                        title="{{ translate("acquereurs historiques %$nomPourTitle%$ %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  356.                                                                         {{ element.nom_localisation }} ({{ element.nb_acquereurs_historiques }})
  357.                                                                     </a>
  358.                                                                 {% else %}
  359.                                                                     <span class="disabled-link">{{ element.nom_localisation }} ({{ element.nb_acquereurs_historiques }})</span>
  360.                                                                 {% endif %}
  361.                                                             </li>
  362.                                                         {% endif %}
  363.                                                     {% endfor %}
  364.                                                 </ul>
  365.                                             </div>
  366.                                             <div class="col-6 pt-2 mt-3">
  367.                                                 <ul class="cat_regions">
  368.                                                     {% for index, element in sous_localisations_numbers %}
  369.                                                         {% set arrayVarsTrans =  {"prefixe": element.prefixe, "nom_localisation" : element.nom_localisation, "nomPourTitle": secteurActivites|last.nomPourTitle|lower }  %}
  370.                                                         {% if index >= half %}
  371.                                                             <li>
  372.                                                                 {% if element.nb_acquereurs_historiques > 0 %}
  373.                                                                     <a href="{{ path('vendre_entreprise_acquereur_historique_croise', {'nomLocalisation' : element.nom_localisation|slugify, 'nomSecteurActivite' : secteurActivites|last.nomSecteurActivite|slugify, 'idLocalisation' : element.id_localisation, 'type' : element.type, 'idSecteurActivite' : secteurActivites|last.idSecteurActivite, 'codePays' : codePaysWithUnderScore }) }}"
  374.                                                                        title="{{ translate("acquereurs historiques %$nomPourTitle%$ %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  375.                                                                         {{ element.nom_localisation }} ({{ element.nb_acquereurs_historiques }})
  376.                                                                     </a>
  377.                                                                 {% else %}
  378.                                                                     <span class="disabled-link">{{ element.nom_localisation }} ({{ element.nb_acquereurs_historiques }})</span>
  379.                                                                 {% endif %}
  380.                                                             </li>
  381.                                                         {% endif %}
  382.                                                     {% endfor %}
  383.                                                 </ul>
  384.                                             </div>
  385.                                         {% endif %}
  386.                                     </div>
  387.                                 </div>
  388.                             </div>
  389.                         </div>
  390.                     </div>
  391.                 {% endif %}
  392.                 <!--2 BOUTONS-->
  393.                 <div class="row mt-3 mb-3">
  394.                     <div class="col-12 pt-2 mb-4 text-right">
  395.                         <a href="{{ path('vendre_entreprise_recherche_acquereurs_historiques',{'codePays':codePaysWithUnderScore}  ) }}?{{ string_params_without_page }}" class="text-decoration-none" title="{{ translate("modifiez votre recherche",lang,"","M") | raw }}">
  396.                             <button type="submit" class="btn btn-vert-annonce mt-2">{{ translate("modifiez votre recherche",lang,"","M") | raw }}</button>
  397.                         </a>
  398.                     </div>
  399.                 </div>
  400.                 <!--FIN 2 BOUTONS-->
  401.                 {% if idLocalisation and not idSecteurActivite %}
  402.                     <div class="row" >
  403.                         <div class="col-12 mb-3 ml-3">
  404.                             {% set p = "" %}
  405.                             {% if ( nb_annonces > 1 ) %}
  406.                                 {% set p = "p" %}
  407.                             {% endif %}
  408.                             {% set arrayVarsTrans =  {"prefixe": localisations|last.prefixe, "nom_localisation" : localisations|last.nom_localisation }  %}
  409.                             <span class="fs13 vert">{{ nb_annonces }} {{ translate("$$acheteur$${p|acheteurs} %$prefixe%$ %$nom_localisation%$ dont",lang,"","m", p, arrayVarsTrans) | raw }} :</span>
  410.                         </div>
  411.                     </div>
  412.                     <!--MOBILE-->
  413.                     <div class="row d-block d-sm-none bkg_gris_clair">
  414.                         <div class="col-12">
  415.                             <div class="row">
  416.                                 <div class="col-6  text-center my-3 br_gris">
  417.                                     <div class="blanc lh099 py-3">
  418.                                         <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">
  419.                                             <span class="fs2">{{ nb_annonces_acquisition }}</span><br>
  420.                                             {% set p = "" %}
  421.                                             {% if ( nb_annonces_acquisition > 1 ) %}
  422.                                                 {% set p = "p" %}
  423.                                             {% endif %}
  424.                                             <span class="res_font">{{ translate("$$annonce$${p|annonces}<br>d'acquisition",lang,"","m", p) | raw }}</span>
  425.                                         </a>
  426.                                     </div>
  427.                                 </div>
  428.                                 <div class="col-6 text-center my-3">
  429.                                     <div class="blanc lh099 py-3">
  430.                                         <a href="{{ path('vendre_entreprise_cv_repreneur_localisation',{'slug':slug, 'type':type, 'idLocalisation':idLocalisation, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="vert lh099 py-3">
  431.                                             <span class="fs2">{{ nb_cvs }}</span><br>
  432.                                             {% set p = "" %}
  433.                                             {% if ( nb_cvs > 1 ) %}
  434.                                                 {% set p = "p" %}
  435.                                             {% endif %}
  436.                                             <span class="res_font">{{ translate("CV de <br>$$repreneur$${p|repreneurs}",lang,"","M", p) | raw }}</span>
  437.                                         </a>
  438.                                     </div>
  439.                                 </div>
  440.                                 <div class="col-6 text-center my-3 br_gris">
  441.                                     <div class="blanc bkg_vert lh099 py-3">
  442.                                         <span class="fs2">{{ nb_acheteurs_potentiels }}</span><br>
  443.                                         {% set p = "" %}
  444.                                         {% if ( nb_acheteurs_potentiels > 1 ) %}
  445.                                             {% set p = "p" %}
  446.                                         {% endif %}
  447.                                         <span class="res_font">{{ translate("$$acheteur<br>potentiel$${p|acheteurs<br>potentiels}",lang,"","m", p) | raw }}</span>
  448.                                     </div>
  449.                                 </div>
  450.                                 <div class="col-6 text-center my-3 pr-4">
  451.                                     <div class="blanc lh099 py-3">
  452.                                         <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">
  453.                                             <span class="fs2">{{ nb_investisseurs_acquereurs }}</span><br>
  454.                                             {% set p = "" %}
  455.                                             {% if ( nb_investisseurs_acquereurs > 1 ) %}
  456.                                                 {% set p = "p" %}
  457.                                             {% endif %}
  458.                                             <span class="res_font">{{ translate("$$fonds<br>acquereur$${p|fonds<br>acquereurs}",lang,"","m", p) | raw }}</span></a>
  459.                                     </div>
  460.                                 </div>
  461.                             </div>
  462.                         </div>
  463.                     </div>
  464.                     <!--MOBILE-->
  465.                     <!--TOUT SAUF MOBILE-->
  466.                     <div class="row d-none d-sm-block">
  467.                         <div class="onglet5 col-12 mb-4">
  468.                             <nav>
  469.                                 <div class="nav nav-tabs nav-fill" id="nav-tab" role="tablist">
  470.                                     <div class="col-12 col-sm-3 no-padding-x bl_gris lh13 order-4 order-sm-1">
  471.                                         <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 }}">
  472.                                             {% set p = "" %}
  473.                                             {% if ( nb_annonces_acquisition > 1 ) %}
  474.                                                 {% set p = "p" %}
  475.                                             {% endif %}
  476.                                             <span class="fs2">{{ nb_annonces_acquisition }}</span><br><span class="fs12">{{ translate("$$annonce$${p|annonces}<br>d'acquisition",lang,"","m", p) | raw }}</span>
  477.                                         </a>
  478.                                     </div>
  479.                                     <div class="col-12 col-sm-3 no-padding-x bl_gris br_gris lh13 order-sm-2">
  480.                                         <a class="nav-item nav-link" href="{{ path('vendre_entreprise_cv_repreneur_localisation',{'slug':slug, 'type':type, 'idLocalisation':idLocalisation, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
  481.                                             {% set p = "" %}
  482.                                             {% if ( nb_cvs > 1 ) %}
  483.                                                 {% set p = "p" %}
  484.                                             {% endif %}
  485.                                             <span class="fs2">{{ nb_cvs }}</span><br><span class="fs12">{{ translate("CV de <br>$$repreneur$${p|repreneurs}",lang,"","M", p) | raw }}</span>
  486.                                         </a>
  487.                                     </div>
  488.                                     <div class="col-12 col-sm-3 no-padding-x br_gris  lh13 order-sm-3">
  489.                                         <div class="nav-item nav-link active">
  490.                                             {% set p = "" %}
  491.                                             {% if ( nb_acheteurs_potentiels > 1 ) %}
  492.                                                 {% set p = "p" %}
  493.                                             {% endif %}
  494.                                             <span class="fs2">{{ nb_acheteurs_potentiels }}</span><br><span class="fs12">{{ translate("$$acheteur<br>potentiel$${p|acheteurs<br>potentiels}",lang,"","m", p) | raw }}</span>
  495.                                         </div>
  496.                                     </div>
  497.                                     <div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-4">
  498.                                         <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 }}">
  499.                                             {% set p = "" %}
  500.                                             {% if ( nb_investisseurs_acquereurs > 1 ) %}
  501.                                                 {% set p = "p" %}
  502.                                             {% endif %}
  503.                                             <span class="fs2">{{ nb_investisseurs_acquereurs }}</span><br><span class="fs12">{{ translate("$$fonds<br>acquereur$${p|fonds<br>acquereurs}",lang,"","m", p) | raw }}</span>
  504.                                         </a>
  505.                                     </div>
  506.                                 </div>
  507.                             </nav>
  508.                         </div>
  509.                     </div>
  510.                     <!--TOUT SAUF MOBILE-->
  511.                     <div class="row mt-5">
  512.                         <div class="onglet5 col-12 col-sm-6 offset-sm-5 mb-4">
  513.                             <nav>
  514.                                 <div class="nav nav-tabs nav-fill" id="nav-tab" role="tablist">
  515.                                     <div class="col-6 col-sm-5 no-padding-x lh13">
  516.                                         <div class="nav-item nav-link active">
  517.                                             {% set p = "" %}
  518.                                             {% if ( nb_acquereurs_historiques > 1 ) %}
  519.                                                 {% set p = "p" %}
  520.                                             {% endif %}
  521.                                             <span class="fs2">{{ nb_acquereurs_historiques }}</span><br><span class="fs12">{{ translate("$$acquereur<br>historique$${p|acquereurs<br>historiques}",lang,"","M", p) | raw }}</span>
  522.                                         </div>
  523.                                     </div>
  524.                                     <div class="col-6 col-sm-5 no-padding-x lh13 br_gris bl_m_gris">
  525.                                         <a class="nav-item nav-link" href="{{ path('vendre_entreprise_participations_fonds_localisation',{'slug':slug, 'type':type, 'idLocalisation':idLocalisation, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
  526.                                             {% set p = "" %}
  527.                                             {% if ( nb_participations_fonds > 1 ) %}
  528.                                                 {% set p = "p" %}
  529.                                             {% endif %}
  530.                                             <span class="fs2">{{ nb_participations_fonds }}</span><br><span class="fs12">{{ translate("$$participation<br>de fonds$${p|participations<br>de fonds}",lang,"","M", p) | raw }}</span></a>
  531.                                     </div>
  532.                                 </div>
  533.                             </nav>
  534.                         </div>
  535.                     </div>
  536.                 {% elseif idSecteurActivite and not idLocalisation %}
  537.                     <div class="row" >
  538.                         <div class="col-12 mb-3 ml-3">
  539.                             {% set p = "" %}
  540.                             {% if ( nb_annonces > 1 ) %}
  541.                                 {% set p = "p" %}
  542.                             {% endif %}
  543.                             {% set arrayVarsTrans =  {"nomPourTitle": secteurActivites|last.nomPourTitle|lower }  %}
  544.                             <span class="fs13 vert">{{ nb_annonces }} {{ translate("$$acheteur$${p|acheteurs} dont",lang,"","m", p) | raw }} :</span>
  545.                         </div>
  546.                     </div>
  547.                     <!--MOBILE-->
  548.                     <div class="row d-block d-sm-none bkg_gris_clair">
  549.                         <div class="col-12">
  550.                             <div class="row">
  551.                                 <div class="col-6  text-center my-3 br_gris">
  552.                                     <div class="blanc lh099 py-3">
  553.                                         <a href="{{ path('vendre_entreprise_annonces_acquisition_secteur_activite',{'slug': slug, 'idSecteurActivite' : idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="vert lh099 py-3">
  554.                                             <span class="fs2">{{ nb_annonces_acquisition }}</span><br>
  555.                                             {% set p = "" %}
  556.                                             {% if ( nb_annonces_acquisition > 1 ) %}
  557.                                                 {% set p = "p" %}
  558.                                             {% endif %}
  559.                                             <span class="res_font">{{ translate("$$annonce$${p|annonces}<br>d'acquisition",lang,"","m", p) | raw }}</span>
  560.                                         </a>
  561.                                     </div>
  562.                                 </div>
  563.                                 <div class="col-6 text-center my-3">
  564.                                     <div class="blanc lh099 py-3">
  565.                                         <a href="{{ path('vendre_entreprise_cv_repreneur_secteur_activite',{'slug': slug, 'idSecteurActivite' : idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="vert lh099 py-3">
  566.                                             <span class="fs2">{{ nb_cvs }}</span><br>
  567.                                             {% set p = "" %}
  568.                                             {% if ( nb_cvs > 1 ) %}
  569.                                                 {% set p = "p" %}
  570.                                             {% endif %}
  571.                                             <span class="res_font">{{ translate("CV de <br>$$repreneur$${p|repreneurs}",lang,"","M", p) | raw }}</span>
  572.                                         </a>
  573.                                     </div>
  574.                                 </div>
  575.                                 <div class="col-6 text-center my-3 br_gris">
  576.                                     <div class="blanc bkg_vert lh099 py-3">
  577.                                         <span class="fs2">{{ nb_acheteurs_potentiels }}</span><br>
  578.                                         {% set p = "" %}
  579.                                         {% if ( nb_acheteurs_potentiels > 1 ) %}
  580.                                             {% set p = "p" %}
  581.                                         {% endif %}
  582.                                         <span class="res_font">{{ translate("$$acheteur<br>potentiel$${p|acheteurs<br>potentiels}",lang,"","m", p) | raw }}</span>
  583.                                     </div>
  584.                                 </div>
  585.                                 <div class="col-6 text-center my-3 pr-4">
  586.                                     <div class="blanc lh099 py-3">
  587.                                         <a href="{{ path('vendre_entreprise_fonds_acquereur_secteur_activite',{'slug': slug, 'idSecteurActivite' : idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="vert lh099 py-3">
  588.                                             <span class="fs2">{{ nb_investisseurs_acquereurs }}</span><br>
  589.                                             {% set p = "" %}
  590.                                             {% if ( nb_investisseurs_acquereurs > 1 ) %}
  591.                                                 {% set p = "p" %}
  592.                                             {% endif %}
  593.                                             <span class="res_font">{{ translate("$$fonds<br>acquereur$${p|fonds<br>acquereurs}",lang,"","m", p) | raw }}</span></a>
  594.                                     </div>
  595.                                 </div>
  596.                             </div>
  597.                         </div>
  598.                     </div>
  599.                     <!--MOBILE-->
  600.                     <!--TOUT SAUF MOBILE-->
  601.                     <div class="row d-none d-sm-block">
  602.                         <div class="onglet5 col-12 mb-4">
  603.                             <nav>
  604.                                 <div class="nav nav-tabs nav-fill" id="nav-tab" role="tablist">
  605.                                     <div class="col-12 col-sm-3 no-padding-x bl_gris lh13 order-4 order-sm-1">
  606.                                         <a class="nav-item nav-link" href="{{ path('vendre_entreprise_annonces_acquisition_secteur_activite',{'slug': slug, 'idSecteurActivite' : idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
  607.                                             {% set p = "" %}
  608.                                             {% if ( nb_annonces_acquisition > 1 ) %}
  609.                                                 {% set p = "p" %}
  610.                                             {% endif %}
  611.                                             <span class="fs2">{{ nb_annonces_acquisition }}</span><br><span class="fs12">{{ translate("$$annonce$${p|annonces}<br>d'acquisition",lang,"","m", p) | raw }}</span>
  612.                                         </a>
  613.                                     </div>
  614.                                     <div class="col-12 col-sm-3 no-padding-x bl_gris br_gris lh13 order-sm-2">
  615.                                         <a class="nav-item nav-link" href="{{ path('vendre_entreprise_cv_repreneur_secteur_activite',{'slug': slug, 'idSecteurActivite' : idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
  616.                                             {% set p = "" %}
  617.                                             {% if ( nb_cvs > 1 ) %}
  618.                                                 {% set p = "p" %}
  619.                                             {% endif %}
  620.                                             <span class="fs2">{{ nb_cvs }}</span><br><span class="fs12">{{ translate("CV de <br>$$repreneur$${p|repreneurs}",lang,"","M", p) | raw }}</span>
  621.                                         </a>
  622.                                     </div>
  623.                                     <div class="col-12 col-sm-3 no-padding-x br_gris  lh13 order-sm-3">
  624.                                         <div class="nav-item nav-link active">
  625.                                             {% set p = "" %}
  626.                                             {% if ( nb_acheteurs_potentiels > 1 ) %}
  627.                                                 {% set p = "p" %}
  628.                                             {% endif %}
  629.                                             <span class="fs2">{{ nb_acheteurs_potentiels }}</span><br><span class="fs12">{{ translate("$$acheteur<br>potentiel$${p|acheteurs<br>potentiels}",lang,"","m", p) | raw }}</span>
  630.                                         </div>
  631.                                     </div>
  632.                                     <div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-4">
  633.                                         <a class="nav-item nav-link" href="{{ path('vendre_entreprise_fonds_acquereur_secteur_activite',{'slug': slug, 'idSecteurActivite' : idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
  634.                                             {% set p = "" %}
  635.                                             {% if ( nb_investisseurs_acquereurs > 1 ) %}
  636.                                                 {% set p = "p" %}
  637.                                             {% endif %}
  638.                                             <span class="fs2">{{ nb_investisseurs_acquereurs }}</span><br><span class="fs12">{{ translate("$$fonds<br>acquereur$${p|fonds<br>acquereurs}",lang,"","m", p) | raw }}</span>
  639.                                         </a>
  640.                                     </div>
  641.                                 </div>
  642.                             </nav>
  643.                         </div>
  644.                     </div>
  645.                     <!--TOUT SAUF MOBILE-->
  646.                     <div class="row mt-5">
  647.                         <div class="onglet5 col-12 col-sm-6 offset-sm-5 mb-4">
  648.                             <nav>
  649.                                 <div class="nav nav-tabs nav-fill" id="nav-tab" role="tablist">
  650.                                     <div class="col-6 col-sm-5 no-padding-x lh13">
  651.                                         <div class="nav-item nav-link active">
  652.                                             {% set p = "" %}
  653.                                             {% if ( nb_acquereurs_historiques > 1 ) %}
  654.                                                 {% set p = "p" %}
  655.                                             {% endif %}
  656.                                             <span class="fs2">{{ nb_acquereurs_historiques }}</span><br><span class="fs12">{{ translate("$$acquereur<br>historique$${p|acquereurs<br>historiques}",lang,"","m", p) | raw }}</span>
  657.                                         </div>
  658.                                     </div>
  659.                                     <div class="col-6 col-sm-5 no-padding-x lh13 br_gris bl_m_gris">
  660.                                         <a class="nav-item nav-link" href="{{ path('vendre_entreprise_participations_fonds_secteur_activite',{'slug':slug, 'idSecteurActivite':idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
  661.                                             {% set p = "" %}
  662.                                             {% if ( nb_participations_fonds > 1 ) %}
  663.                                                 {% set p = "p" %}
  664.                                             {% endif %}
  665.                                             <span class="fs2">{{ nb_participations_fonds }}</span><br><span class="fs12">{{ translate("$$participation<br>de fonds$${p|participations<br>de fonds}",lang,"","m", p) | raw }}</span></a>
  666.                                     </div>
  667.                                 </div>
  668.                             </nav>
  669.                         </div>
  670.                     </div>
  671.                 {% elseif idLocalisation and idSecteurActivite %}
  672.                     <div class="row" >
  673.                         <div class="col-12 mb-3 ml-3">
  674.                             {% set p = "" %}
  675.                             {% if ( nb_annonces > 1 ) %}
  676.                                 {% set p = "p" %}
  677.                             {% endif %}
  678.                             {% set arrayVarsTrans =  {"prefixe": localisations|last.prefixe, "nom_localisation" : localisations|last.nom_localisation, "nomPourTitle": secteurActivites|last.nomPourTitle|lower }  %}
  679.                             <span class="fs13 vert">{{ nb_annonces }} {{ translate("$$acheteur$${p|acheteurs} dont",lang,"","m", p) | raw }} :</span>
  680.                         </div>
  681.                     </div>
  682.                     <!--MOBILE-->
  683.                     <div class="row d-block d-sm-none bkg_gris_clair">
  684.                         <div class="col-12">
  685.                             <div class="row">
  686.                                 <div class="col-6  text-center my-3 br_gris">
  687.                                     <div class="blanc lh099 py-3">
  688.                                         <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">
  689.                                             <span class="fs2">{{ nb_annonces_acquisition }}</span><br>
  690.                                             {% set p = "" %}
  691.                                             {% if ( nb_annonces_acquisition > 1 ) %}
  692.                                                 {% set p = "p" %}
  693.                                             {% endif %}
  694.                                             <span class="res_font">{{ translate("$$annonce$${p|annonces}<br>d'acquisition",lang,"","m", p) | raw }}</span>
  695.                                         </a>
  696.                                     </div>
  697.                                 </div>
  698.                                 <div class="col-6 text-center my-3">
  699.                                     <div class="blanc lh099 py-3">
  700.                                         <a href="{{ path('vendre_entreprise_cv_repreneur_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">
  701.                                             <span class="fs2">{{ nb_cvs }}</span><br>
  702.                                             {% set p = "" %}
  703.                                             {% if ( nb_cvs > 1 ) %}
  704.                                                 {% set p = "p" %}
  705.                                             {% endif %}
  706.                                             <span class="res_font">{{ translate("CV de <br>$$repreneur$${p|repreneurs}",lang,"","M", p) | raw }}</span>
  707.                                         </a>
  708.                                     </div>
  709.                                 </div>
  710.                                 <div class="col-6 text-center my-3 br_gris">
  711.                                     <div class="blanc bkg_vert lh099 py-3">
  712.                                         <span class="fs2">{{ nb_acheteurs_potentiels }}</span><br>
  713.                                         {% set p = "" %}
  714.                                         {% if ( nb_acheteurs_potentiels > 1 ) %}
  715.                                             {% set p = "p" %}
  716.                                         {% endif %}
  717.                                         <span class="res_font">{{ translate("$$acheteur<br>potentiel$${p|acheteurs<br>potentiels}",lang,"","m", p) | raw }}</span>
  718.                                     </div>
  719.                                 </div>
  720.                                 <div class="col-6 text-center my-3 pr-4">
  721.                                     <div class="blanc lh099 py-3">
  722.                                         <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">
  723.                                             <span class="fs2">{{ nb_investisseurs_acquereurs }}</span><br>
  724.                                             {% set p = "" %}
  725.                                             {% if ( nb_investisseurs_acquereurs > 1 ) %}
  726.                                                 {% set p = "p" %}
  727.                                             {% endif %}
  728.                                             <span class="res_font">{{ translate("$$fonds<br>acquereur$${p|fonds<br>acquereurs}",lang,"","m", p) | raw }}</span></a>
  729.                                     </div>
  730.                                 </div>
  731.                             </div>
  732.                         </div>
  733.                     </div>
  734.                     <!--MOBILE-->
  735.                     <!--TOUT SAUF MOBILE-->
  736.                     <div class="row d-none d-sm-block">
  737.                         <div class="onglet5 col-12 mb-4">
  738.                             <nav>
  739.                                 <div class="nav nav-tabs nav-fill" id="nav-tab" role="tablist">
  740.                                     <div class="col-12 col-sm-3 no-padding-x bl_gris lh13 order-4 order-sm-1">
  741.                                         <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 }}">
  742.                                             {% set p = "" %}
  743.                                             {% if ( nb_annonces_acquisition > 1 ) %}
  744.                                                 {% set p = "p" %}
  745.                                             {% endif %}
  746.                                             <span class="fs2">{{ nb_annonces_acquisition }}</span><br><span class="fs12">{{ translate("$$annonce$${p|annonces}<br>d'acquisition",lang,"","m", p) | raw }}</span>
  747.                                         </a>
  748.                                     </div>
  749.                                     <div class="col-12 col-sm-3 no-padding-x bl_gris br_gris  lh13 order-sm-2">
  750.                                         <a class="nav-item nav-link" href="{{ path('vendre_entreprise_cv_repreneur_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 }}">
  751.                                             {% set p = "" %}
  752.                                             {% if ( nb_cvs > 1 ) %}
  753.                                                 {% set p = "p" %}
  754.                                             {% endif %}
  755.                                             <span class="fs2">{{ nb_cvs }}</span><br><span class="fs12">{{ translate("CV de <br>$$repreneur$${p|repreneurs}",lang,"","M", p) | raw }}</span>
  756.                                         </a>
  757.                                     </div>
  758.                                     <div class="col-12 col-sm-3 no-padding-x br_gris  lh13 order-sm-3">
  759.                                         <div class="nav-item nav-link active">
  760.                                             {% set p = "" %}
  761.                                             {% if ( nb_acheteurs_potentiels > 1 ) %}
  762.                                                 {% set p = "p" %}
  763.                                             {% endif %}
  764.                                             <span class="fs2">{{ nb_acheteurs_potentiels }}</span><br><span class="fs12">{{ translate("$$acheteur<br>potentiel$${p|acheteurs<br>potentiels}",lang,"","m", p) | raw }}</span>
  765.                                         </div>
  766.                                     </div>
  767.                                     <div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-4">
  768.                                         <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 }}">
  769.                                             {% set p = "" %}
  770.                                             {% if ( nb_investisseurs_acquereurs > 1 ) %}
  771.                                                 {% set p = "p" %}
  772.                                             {% endif %}
  773.                                             <span class="fs2">{{ nb_investisseurs_acquereurs }}</span><br><span class="fs12">{{ translate("$$fonds<br>acquereur$${p|fonds<br>acquereurs}",lang,"","m", p) | raw }}</span>
  774.                                         </a>
  775.                                     </div>
  776.                                 </div>
  777.                             </nav>
  778.                         </div>
  779.                     </div>
  780.                     <!--TOUT SAUF MOBILE-->
  781.                     <div class="row mt-5">
  782.                         <div class="onglet5 col-12 col-sm-6 offset-sm-5 mb-4">
  783.                             <nav>
  784.                                 <div class="nav nav-tabs nav-fill" id="nav-tab" role="tablist">
  785.                                     <div class="col-6 col-sm-5 no-padding-x lh13">
  786.                                         <div class="nav-item nav-link active">
  787.                                             {% set p = "" %}
  788.                                             {% if ( nb_acquereurs_historiques > 1 ) %}
  789.                                                 {% set p = "p" %}
  790.                                             {% endif %}
  791.                                             <span class="fs2">{{ nb_acquereurs_historiques }}</span><br><span class="fs12">{{ translate("$$acquereur<br>historique$${p|acquereurs<br>historiques}",lang,"","m", p) | raw }}</span>
  792.                                         </div>
  793.                                     </div>
  794.                                     <div class="col-6 col-sm-5 no-padding-x lh13 br_gris bl_m_gris">
  795.                                         <a class="nav-item nav-link" href="{{ path('vendre_entreprise_participations_fonds_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 }}">
  796.                                             {% set p = "" %}
  797.                                             {% if ( nb_participations_fonds > 1 ) %}
  798.                                                 {% set p = "p" %}
  799.                                             {% endif %}
  800.                                             <span class="fs2">{{ nb_participations_fonds }}</span><br><span class="fs12">{{ translate("$$participation<br>de fonds$${p|participations<br>de fonds}",lang,"","m", p) | raw }}</span></a>
  801.                                     </div>
  802.                                 </div>
  803.                             </nav>
  804.                         </div>
  805.                     </div>
  806.                 {% else %}
  807.                     <div class="row" >
  808.                         <div class="col-12 mb-3 ml-3">
  809.                             {% set p = "" %}
  810.                             {% if ( nb_annonces > 1 ) %}
  811.                                 {% set p = "p" %}
  812.                             {% endif %}
  813.                             <span class="fs13 vert">{{ nb_annonces }} {{ translate("$$acheteur$${p|acheteurs} dont",lang,"","m", p) | raw }} :</span>
  814.                         </div>
  815.                     </div>
  816.                     <!--MOBILE-->
  817.                     <div class="row d-block d-sm-none bkg_gris_clair">
  818.                         <div class="col-12">
  819.                             <div class="row">
  820.                                 <div class="col-6  text-center my-3 bl_gris">
  821.                                     <div class="blanc lh099 py-3">
  822.                                         <a href="{{ path('vendre_entreprise_resultats_annonces_acquisition',{'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="vert lh099 py-3">
  823.                                             <span class="fs2">{{ nb_annonces_acquisition }}</span><br>
  824.                                             {% set p = "" %}
  825.                                             {% if ( nb_annonces_acquisition > 1 ) %}
  826.                                                 {% set p = "p" %}
  827.                                             {% endif %}
  828.                                             <span class="res_font">{{ translate("$$annonce$${p|annonces}<br>d'acquisition",lang,"","m", p) | raw }}</span>
  829.                                         </a>
  830.                                     </div>
  831.                                 </div>
  832.                                 <div class="col-6 text-center my-3">
  833.                                     <div class="blanc lh099 py-3">
  834.                                         <a href="{{ path('vendre_entreprise_resultats_cv_repreneur',{'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="vert lh099 py-3">
  835.                                             <span class="fs2">{{ nb_cvs }}</span><br>
  836.                                             {% set p = "" %}
  837.                                             {% if ( nb_cvs > 1 ) %}
  838.                                                 {% set p = "p" %}
  839.                                             {% endif %}
  840.                                             <span class="res_font">{{ translate("CV de <br>$$repreneur$${p|repreneurs}",lang,"","M", p) | raw }}</span>
  841.                                         </a>
  842.                                     </div>
  843.                                 </div>
  844.                                 <div class="col-6 text-center my-3 br_gris">
  845.                                     <div class="blanc bkg_vert lh099 py-3">
  846.                                         <span class="fs2">{{ nb_acheteurs_potentiels }}</span><br>
  847.                                         {% set p = "" %}
  848.                                         {% if ( nb_acheteurs_potentiels > 1 ) %}
  849.                                             {% set p = "p" %}
  850.                                         {% endif %}
  851.                                         <span class="res_font">{{ translate("$$acheteur<br>potentiel$${p|acheteurs<br>potentiels}",lang,"","m", p) | raw }}</span>
  852.                                     </div>
  853.                                 </div>
  854.                                 <div class="col-6 text-center my-3 pr-4">
  855.                                     <div class="blanc lh099 py-3">
  856.                                         <a href="{{ path('vendre_entreprise_resultats_fonds_acquereur',{'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="vert lh099 py-3">
  857.                                             <span class="fs2">{{ nb_investisseurs_acquereurs }}</span><br>
  858.                                             {% set p = "" %}
  859.                                             {% if ( nb_investisseurs_acquereurs > 1 ) %}
  860.                                                 {% set p = "p" %}
  861.                                             {% endif %}
  862.                                             <span class="res_font">{{ translate("$$fonds<br>acquereur$${p|fonds<br>acquereurs}",lang,"","m", p) | raw }}</span>
  863.                                         </a>
  864.                                     </div>
  865.                                 </div>
  866.                             </div>
  867.                         </div>
  868.                     </div>
  869.                     <!--MOBILE-->
  870.                     <!--TOUT SAUF MOBILE-->
  871.                     <div class="row d-none d-sm-block">
  872.                         <div class="onglet5 col-12 mb-4">
  873.                             <nav>
  874.                                 <div class="nav nav-tabs nav-fill" id="nav-tab" role="tablist">
  875.                                     <div class="col-12 col-sm-3 no-padding-x bl_gris lh13 order-4 order-sm-1">
  876.                                         <a class="nav-item nav-link" href="{{ path('vendre_entreprise_resultats_annonces_acquisition',{'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
  877.                                             {% set p = "" %}
  878.                                             {% if ( nb_annonces_acquisition > 1 ) %}
  879.                                                 {% set p = "p" %}
  880.                                             {% endif %}
  881.                                             <span class="fs2">{{ nb_annonces_acquisition }}</span><br><span class="fs12">{{ translate("$$annonce$${p|annonces}<br>d'acquisition",lang,"","m", p) | raw }}</span>
  882.                                         </a>
  883.                                     </div>
  884.                                     <div class="col-12 col-sm-3 no-padding-x bl_gris br_gris  lh13 order-sm-2">
  885.                                         <a class="nav-item nav-link" href="{{ path('vendre_entreprise_resultats_cv_repreneur',{'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
  886.                                             {% set p = "" %}
  887.                                             {% if ( nb_cvs > 1 ) %}
  888.                                                 {% set p = "p" %}
  889.                                             {% endif %}
  890.                                             <span class="fs2">{{ nb_cvs }}</span><br><span class="fs12">{{ translate("CV de <br>$$repreneur$${p|repreneurs}",lang,"","M", p) | raw }}</span>
  891.                                         </a>
  892.                                     </div>
  893.                                     <div class="col-12 col-sm-3 no-padding-x br_gris  lh13 order-sm-3">
  894.                                         <div class="nav-item nav-link active">
  895.                                             {% set p = "" %}
  896.                                             {% if ( nb_acheteurs_potentiels > 1 ) %}
  897.                                                 {% set p = "p" %}
  898.                                             {% endif %}
  899.                                             <span class="fs2">{{ nb_acheteurs_potentiels }}</span><br><span class="fs12">{{ translate("$$acheteur<br>potentiel$${p|acheteurs<br>potentiels}",lang,"","m", p) | raw }}</span>
  900.                                         </div>
  901.                                     </div>
  902.                                     <div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-4">
  903.                                         <a class="nav-item nav-link" href="{{ path('vendre_entreprise_resultats_fonds_acquereur',{'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
  904.                                             {% set p = "" %}
  905.                                             {% if ( nb_investisseurs_acquereurs > 1 ) %}
  906.                                                 {% set p = "p" %}
  907.                                             {% endif %}
  908.                                             <span class="fs2">{{ nb_investisseurs_acquereurs }}</span><br><span class="fs12">{{ translate("$$fonds<br>acquereur$${p|fonds<br>acquereurs}",lang,"","m", p) | raw }}</span>
  909.                                         </a>
  910.                                     </div>
  911.                                 </div>
  912.                             </nav>
  913.                         </div>
  914.                     </div>
  915.                     <!--TOUT SAUF MOBILE-->
  916.                     <div class="row mt-5">
  917.                         <div class="onglet5 col-12 col-sm-6 offset-sm-5 mb-4">
  918.                             <nav>
  919.                                 <div class="nav nav-tabs nav-fill" id="nav-tab" role="tablist">
  920.                                     <div class="col-6 col-sm-5 no-padding-x lh13">
  921.                                         <div class="nav-item nav-link active">
  922.                                             {% set p = "" %}
  923.                                             {% if ( nb_acquereurs_historiques > 1 ) %}
  924.                                                 {% set p = "p" %}
  925.                                             {% endif %}
  926.                                             <span class="fs2">{{ nb_acquereurs_historiques }}</span><br><span class="fs12">{{ translate("$$acquereur<br>historique$${p|acquereurs<br>historiques}",lang,"","m", p) | raw }}</span>
  927.                                         </div>
  928.                                     </div>
  929.                                     <div class="col-6 col-sm-5 no-padding-x lh13 br_gris bl_m_gris">
  930.                                         <a class="nav-item nav-link" href="{{ path('vendre_entreprise_resultats_participations_fonds',{'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
  931.                                             {% set p = "" %}
  932.                                             {% if ( nb_participations_fonds > 1 ) %}
  933.                                                 {% set p = "p" %}
  934.                                             {% endif %}
  935.                                             <span class="fs2">{{ nb_participations_fonds }}</span><br><span class="fs12">{{ translate("$$participation<br>de fonds$${p|participations<br>de fonds}",lang,"","m", p) | raw }}</span></a>
  936.                                     </div>
  937.                                 </div>
  938.                             </nav>
  939.                         </div>
  940.                     </div>
  941.                 {% endif %}
  942.                 <div class="row mt-5" >
  943.                     <div class="col-12 mb-1 ml-3 mb-5">
  944.                         {% set p = "" %}
  945.                         {% if ( nb_acquereurs_historiques > 1 ) %}
  946.                             {% set p = "p" %}
  947.                         {% endif %}
  948.                         <span class="fs18">
  949.                             {% set arrayVarsTrans = {"complement_titre": complement_titre }  %}
  950.                             {{ nb_acquereurs_historiques }} {{ translate("$$acquereur historique$${p|acquereurs historiques} %$complement_titre%$",lang,"","m", p, arrayVarsTrans) | raw }}
  951.                         </span><br>
  952.                         <a href="#" data-toggle="modal" data-target="#modal-explication" title="" class="underlined">{{ translate('Que sont les "acquereurs historiques" proposés par FUSACQ ?',lang,"","M") | raw }}</a>
  953.                     </div>
  954.                 </div>
  955.                 
  956.                 {% if nb_acquereurs_pays and nb_acquereurs_pays > 1 %}
  957.                 <div class="row pt-2 text-right mb-5">
  958.                     <div class="col-12">
  959.                         <h5 class="titre_annonce_vert">
  960.                             <a href="{{ path('vendre_entreprise_resultats_acquereur_historique', {codePays: codePaysWithUnderScore}) }}?{{ string_params_pays }}">
  961.                                 {% set arrayVarsTrans =  {"nb_acquereurs_pays": nb_acquereurs_pays }  %}
  962.                                 {{ translate("voir aussi les %$nb_acquereurs_pays%$ acquéreurs basés " ~ text_pays_recherche ,lang,"","M", "", arrayVarsTrans) | raw }}
  963.                             </a>
  964.                         </h5>
  965.                     </div>
  966.                 </div>
  967.                 {% endif %}
  968.                 <!--PAGINATION-->
  969.                 <div class="row mt-3">
  970.                     <div class="col-sm-12">
  971.                         <nav aria-label="..." class="pagination-vert">
  972.                             {{ knp_pagination_render(liste_acquereurs_historiques) }}
  973.                         </nav>
  974.                     </div>
  975.                 </div>
  976.                 <!--FIN PAGINATION-->
  977.                 
  978.                 <div class="row mt-3 mb-2">
  979.                     <div class="col-12 col-sm-6 offset-sm-6 text-right">
  980.                         <div class="row">
  981.                             <div class="col-12 col-sm-4 pt-2 text-right">
  982.                                 <label for="idFromControlSelectTri">{{ translate("trier par",lang,"","M") | raw }}</label>
  983.                             </div>
  984.                             <div class="col-12 col-sm-8">
  985.                                 <select class="form-control" id="idFromControlSelectTri" v-on:change="sortBy($event)">
  986.                                     <option value="date_desc" {% if tri == "date_desc" %}selected="selected"{% endif %}>{{ translate("date derniere acquisition",lang,"","M") | raw }}</option>
  987.                                     <option value="nb_desc" {% if tri == "nb_desc" %}selected="selected"{% endif %} >{{ translate("nombre d'operations",lang,"","M") | raw }}</option>
  988.                                 </select>
  989.                             </div>
  990.                         </div>
  991.                     </div>
  992.                 </div>
  993.                 <div class="row" >
  994.                     <div class="col-12">
  995.                         <!--ANNONCES -->
  996.                         {% for acquereur_historique in liste_acquereurs_historiques %}
  997.                             {% set lienSociete = path('vendre_entreprise_acquereur_historique_details',
  998.                  {
  999.                      'idSociete':acquereur_historique.id_societe,
  1000.                      'resumeActivite': acquereur_historique.resume_activite | slugify,
  1001.                      'codePays':codePaysWithUnderScore
  1002.                  }) ~ '?urlList=' ~ urlList ~ '&' ~ string_params ~ '&index=' ~ acquereur_historique.index
  1003.                             %}
  1004.                             {#
  1005.                             {% if has_service %}
  1006.                                 {% set url = lienSociete %}
  1007.                                 {% set modal = "" %}
  1008.                             {% else %}
  1009.                                 {% set url = "#" %}
  1010.                                 {% set modal = 'data-toggle=modal data-target=#modal-condition' %}
  1011.                             {% endif %}
  1012.                             #}
  1013.                             <div class="card mb-3 card-ie filet_gris no_shadow">
  1014.                                 <div class="card-body">
  1015.                                     <div class="row">
  1016.                                         <div class="col-12 col-md-8 col-lg-9 col-xl-10">
  1017.                                             <div class="mb-2">
  1018.                                                 <h5 class="titre_annonce_vert">
  1019.                                                     <a href="{{ lienSociete }}"title="{{ acquereur_historique.resume_activite }}">{{ acquereur_historique.resume_activite }}</a>
  1020.                                                 </h5>
  1021.                                                 {% if acquereur_historique.commande %}
  1022.                                                 <span class="orange font_600"><i class="fa-solid fa-circle-check"></i>&nbsp;&nbsp;{{ translate("déjà commandé",lang,"","M") | raw }}</span>
  1023.                                                 {% endif %}
  1024.                                             </div>
  1025.                                             <div class="mb-1">
  1026.                                                 <span class="nowrap_custom">{{ translate("date derniere acquisition" ,lang,"","M") | raw }} :  <strong>{{ acquereur_historique.date_formated }}</strong></span>&nbsp;&nbsp;&nbsp;&nbsp;
  1027.                                                 <span class="nowrap_custom">{{ translate("nb. operations" ,lang,"","M") | raw }} : <strong>{{ acquereur_historique.nb }}</strong></span>
  1028.                                             </div>
  1029.                                             {% if has_service %}
  1030.                                                 <h5 class="titre_annonce_vert"><a href="{{ lienSociete }}"title="{{ acquereur_historique.raison_sociale }}">{{ acquereur_historique.raison_sociale }}</a></h5>&nbsp;&nbsp;&nbsp;
  1031.                                                 {% endif %}
  1032.                                             <i class="fas fa-map-marker-alt"></i>&nbsp; {{ acquereur_historique.siege }}&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  1033.                                             {% set ca_n = acquereur_historique.ca_n | number_format(0, '.', ' ') %}
  1034.                                             {% if ca_n %}
  1035.                                                 <span class="nowrap_custom">{{ translate("CA" ,lang,"","M") | raw }} : <strong>{{ acquereur_historique.ca_n | number_format(0, '.', ' ') }} k€</strong></span>&nbsp;&nbsp;&nbsp;&nbsp;
  1036.                                             {% endif %}
  1037.                                         </div>
  1038.                                         <div class="col-12 col-md-4 col-lg-3 col-xl-2">
  1039.                                             <div class="row">
  1040.                                                 <div class="col-4 col-md-12 text-center">
  1041.                                                     {% if acquereur_historique.carte is defined %}
  1042.                                                         <a href="{{ lienSociete }}"title="{{ acquereur_historique.siege }}"><img class="img-fluid" src="{{ acquereur_historique.carte }}" alt="{{ acquereur_historique.siege }}" ></a>
  1043.                                                         {% endif %}
  1044.                                                 </div>
  1045.                                             </div>
  1046.                                         </div>
  1047.                                         <div class="col-4 col-md-4 col-lg-4 mt-2">
  1048.                                             <a href="{{ lienSociete }}"title="{{ translate("voir les details" ,lang,"","M") | raw }}">
  1049.                                                 <button type="button" class="btn btn-vert-annonce" >
  1050.                                                     {{ translate("voir les details" ,lang,"","M") | raw }}
  1051.                                                 </button>
  1052.                                             </a>
  1053.                                         </div>
  1054.                                     </div>
  1055.                                 </div>
  1056.                             </div>
  1057.                         {% endfor %}
  1058.                         <!--FIN ANNONCES -->
  1059.                         <!--PUB FRANCHISE-->
  1060.                         <!--<div class="card mb-3 card-ie card-franchises filet_gris">
  1061.                                 <div class="card-header">Avez-vous pense a creer ou reprendre en franchise ?</div>
  1062.                                 <div class="card-body">
  1063.                             <div class="row">
  1064.                                         <div class="col-6 col-md-3">
  1065.                                                 <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>
  1066.                                         </div>
  1067.                                         <div class="col-6 col-md-7">
  1068.                                                 <div>
  1069.                                                         <a href="https://www.placedesfranchises.com/carslift" class="inter_orange_link" title="Carslift">CARSLIFT</a><br>
  1070.                                                         <a href="https://www.placedesfranchises.com/carslift" class="vert_franchises" title="Le specialiste du bien motorise">Le specialiste du bien motorise</a><br>
  1071.                                                         <span class="nowrap_custom">Apport : <strong>15 000 € </strong></span>&nbsp;&nbsp;&nbsp;&nbsp;
  1072.                                                         <span class="nowrap_custom">Droit d'entree :  <strong>35 000 €</strong>
  1073.                                                 </div>
  1074.                                         </div>
  1075.                                         <div class="col-12 col-md-2 text-center">
  1076.                                                 <div class="pt-3 mt-2 inline"><small>Consultez sur </small></div>
  1077.                                                 <div class=" inline"><img src="https://static.placedesfranchises.com/img/logo_text.jpg" width="120"></div>
  1078.                                         </div>
  1079.                                 </div>
  1080.                                 </div>
  1081.                         </div>-->
  1082.                         <!--FIN PUB FRANCHISE-->
  1083.                         <!--PUB FRANCHISE-->
  1084.                         <!--<div class="card mb-3 card-ie card-franchises">
  1085.                             <div class="card-header">{{ translate("avez-vous pense a creer ou reprendre en franchise ?",lang,"","M") | raw }}</div>
  1086.                             <div class="card-body">
  1087.                                 <div class="row">
  1088.                                     <div class="col-12 col-md-6">
  1089.                                         <a href="https://www.placedesfranchises.com/carslift" class="inter_orange_link" title="OUEST CONTRÔLE ENVIRONNEMENT">OUEST CONTRÔLE ENVIRONNEMENT</a>
  1090.                                     </div>
  1091.                                     <div class="col-12 col-md-6">
  1092.                                         <div>
  1093.                                             <a href="https://www.placedesfranchises.com/carslift" class="vert_franchises fs13" title="Le specialiste du bien motorise">Le specialiste du bien motorise</a><br>
  1094.                                             <span class="nowrap_custom">{{ translate("apport",lang,"","M") | raw }} : <strong>15 000 € </strong></span>&nbsp;&nbsp;&nbsp;&nbsp;
  1095.                                             <span class="nowrap_custom">{{ translate("droit d'entree",lang,"","M") | raw }} :  <strong>35 000 €</strong>
  1096.                                         </div>
  1097.                                     </div>
  1098.                                     <div class="col-12 col-md-12 text-right mt-3">
  1099.                                         <div class="inline"><small>{{ translate("consultez sur",lang,"","M") | raw }} </small></div>
  1100.                                         <div class="inline"><img src="images/logo_PDF_petit.jpg" width="120"></div>
  1101.                                     </div>
  1102.                                 </div>
  1103.                             </div>
  1104.                         </div>-->
  1105.                         <!--FIN PUB FRANCHISE-->
  1106.                     </div>
  1107.                 </div>
  1108.                 <!--PAGINATION-->
  1109.                 <div class="row mt-3">
  1110.                     <div class="col-sm-12">
  1111.                         <nav aria-label="..." class="pagination-vert">
  1112.                             {{ knp_pagination_render(liste_acquereurs_historiques) }}
  1113.                         </nav>
  1114.                     </div>
  1115.                 </div>
  1116.                 <!--FIN PAGINATION-->
  1117.             </div><!--FIN COLONNE DROITE -->
  1118.         </div> <!--FIN ROW CONTAINER -->
  1119.     </div>  <!--FIN CONTAINER -->
  1120.     <!--MODAL-->
  1121.     <div class="modal fade" id="modal-explication-generale" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
  1122.         <div class="modal-dialog modal-lg" role="document">
  1123.             <div class="modal-content">
  1124.                 <div class="modal-header">
  1125.                     <h5 class="modal-title vert" id="exampleModalLabel">Que sont les "acheteurs potentiels" proposés par FUSACQ ? </h5>
  1126.                     <button type="button" class="close" data-dismiss="modal" aria-label="Close">
  1127.                         <span aria-hidden="true">&times;</span>
  1128.                     </button>
  1129.                 </div>
  1130.                 <div class="modal-body text-justify">
  1131.                     La liste que vous allez consulter sous l'intitulé "Acheteurs potentiels" présente <strong>deux types de sociétés susceptibles de réaliser des acquisitions.</strong><br><br>
  1132.                     <strong>1) Les acquéreurs historiques sont des sociétés ayant déjà réalisé des acquisitions par le passé.</strong><br>
  1133.                     En quoi un acquéreur historique est un acheteur potentiel ?<br>
  1134.                     <em>Une société qui a déjà réalisé une opération d'acquisition est plus à même que n'importe quelle autre d'en réaliser de nouvelles. Elle en a l'expérience et a montré que ce type d'opération était dans son ADN... Rappelez vous que 95% des dirigeants d'entreprise ne feront jamais de croissance externe !</em><br><br>
  1135.                     <strong>2) Les participations des fonds d'investissement sont des sociétés ayant des fonds à leur capital</strong><br>
  1136.                     En quoi une participation de fonds est un acheteur potentiel ?<br>
  1137.                     <em>Lorsqu'un fonds investit dans une société c'est pour que cette dernière se développe, soit par croissance interne, soit par croissance externe. Ces sociétés sont donc toujours à l'écoute des opportunités d'acquisitions et ont, grâce au(x) fonds d'investissement à leur capital les moyens financiers de leurs ambitions.</em> <br><br>
  1138.                     {%  if show_modal %}
  1139.                         <div class="form-check-inline col-12">
  1140.                             <label class="form-check-label">
  1141.                                 <input type="checkbox" class="form-check-input" id="dont-show-modal" data-cookie-name="show_modal_acquereur_historique">Ne plus afficher la prochaine fois
  1142.                             </label>
  1143.                         </div>
  1144.                     {% endif %}
  1145.                 </div>
  1146.                 <div class="modal-footer">
  1147.                     <button type="button" class="btn btn-vert-annonce" data-dismiss="modal">J'ai compris</button>
  1148.                 </div>
  1149.             </div>
  1150.         </div>
  1151.     </div><!--FIN MODAL-->
  1152.     <!--MODAL-->
  1153.     <div class="modal fade" id="modal-explication" tabindex="-1" role="dialog" aria-labelledby="modal-explicationLabel" aria-hidden="true">
  1154.         <div class="modal-dialog modal-lg" role="document">
  1155.             <div class="modal-content">
  1156.                 <div class="modal-header">
  1157.                     <h5 class="modal-title vert" id="modal-explicationLabel">{{ translate('Que sont les "acquereurs historiques" proposés par FUSACQ ?',lang,"","M") | raw }}</h5>
  1158.                     <button type="button" class="close" data-dismiss="modal" aria-label="Close">
  1159.                         <span aria-hidden="true">&times;</span>
  1160.                     </button>
  1161.                 </div>
  1162.                 <div class="modal-body text-justify">
  1163.                     <strong>Les acquéreurs historiques sont des sociétés ayant déjà réalisé des acquisitions par le passé.</strong><br><br>
  1164.                     En quoi un acquéreur historique est un acheteur potentiel ?<br><br>
  1165.                     <em>Une société qui a déjà réalisé une opération d'acquisition est plus à même que n'importe quelle autre d'en réaliser de nouvelles. Elle en a l'expérience et a montré que ce type d'opération était dans son ADN... Rappelez-vous que 95% des dirigeants d'entreprise ne feront jamais de croissance externe !</em><br><br>
  1166.                 </div>
  1167.                 <div class="modal-footer">
  1168.                     <button type="button" class="btn btn-vert" data-dismiss="modal">J'ai compris</button>
  1169.                 </div>
  1170.             </div>
  1171.         </div>
  1172.     </div><!--FIN MODAL-->
  1173.     <!--MODAL 2-->
  1174.     <div class="modal fade" id="modal-condition" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
  1175.         <div class="modal-dialog" role="document">
  1176.             <div class="modal-content">
  1177.                 <div class="modal-header">
  1178.                     {% set p = "" %}
  1179.                     {% if ( nb_acquereurs_historiques > 1 ) %}
  1180.                         {% set p = "p" %}
  1181.                     {% endif %}
  1182.                     <h5 class="modal-title bleu" id="exampleModalLabel">{{ nb_acquereurs_historiques }} {{ translate("$$acquereur historique$${p|acquereurs historiques}",lang,"","m", p) | raw }} </h5>
  1183.                     <button type="button" class="close" data-dismiss="modal" aria-label="Close">
  1184.                         <span aria-hidden="true">&times;</span>
  1185.                     </button>
  1186.                 </div>
  1187.                 <div class="modal-body text-center">
  1188.                     Pour accéder aux fiches des acquéreurs historiques vous devez :<br><br><br>
  1189.                     - Souscrire un abonnement simple à <a href="{{ path('tarifs_index', {'codePays' : codePaysWithUnderScore}) }}#fusions-acquisitions" class="underlined">la base de données de fusions-acquisitions</a><br>
  1190.                     <b>ou</b><br>
  1191.                     - Adhérer à l'offre <a href="{{ path('offreFusacqExpert', {'codePays': codePaysWithUnderScore}) }}" target="_blank" class="underlined"><strong>FUSACQ Expert</strong></a> qui comprend l'ensemble des services Fusacq<br><br><br>
  1192.                     <strong>Pour plus de détails contactez nous au 01&nbsp;48&nbsp;28&nbsp;24&nbsp;24</strong><br>
  1193.                 </div>
  1194.                 <div class="modal-footer">
  1195.                     <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="button-rond">Je me connecte</button></a></div>
  1196.                     <div class="col-6 text-center">Les offres et les tarifs<br>
  1197.                         <a href="{{ path('offreFusacqExpert', {'codePays': codePaysWithUnderScore }) }}" target="_blank">
  1198.                             <button type="button" class="btn btn-fusacq_expert ">Fusacq Expert</button>
  1199.                         </a>
  1200.                     </div>
  1201.                 </div>
  1202.             </div>
  1203.         </div>
  1204.     </div>
  1205.     <!--FIN MODAL 2-->
  1206.     <!--MODAL 3-->
  1207.     <div class="modal fade" id="modal-connexion" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
  1208.         <div class="modal-dialog" role="document">
  1209.             <div class="modal-content">
  1210.                 <div class="modal-header">
  1211.                     <h5 class="modal-title" id="exampleModalLabel">Connexion</h5>
  1212.                     <button type="button" class="close" data-dismiss="modal" aria-label="Close">
  1213.                         <span aria-hidden="true">&times;</span>
  1214.                     </button>
  1215.                 </div>
  1216.                 <div class="modal-body mt-3">
  1217.                     {{ render_esi(controller(
  1218.                          'App\\Controller\\SecurityController::login',
  1219.                           {"from": "cible_potentielle" }
  1220.                      )) | spaceless }}
  1221.                 </div>
  1222.             </div>
  1223.         </div>
  1224.     </div>
  1225.     <!--FIN MODAL 3-->
  1226. {% endblock %}
  1227. {% block javascripts %}
  1228.     {{ parent() }}
  1229.     {%  if show_modal %}
  1230.         <script>
  1231.             $(function () {
  1232.                 $('#modal-explication-generale').modal('show');
  1233.             });
  1234.         </script>
  1235.     {% endif %}
  1236.     <script type="module" data-name="{{ codePaysWithUnderScore }}" id="codePaysParam" src="{{ asset('build/js/vendre_entreprise/acquereur_historique.js') }}"></script>
  1237.     <script src="{{ asset('build/js/modal.js') }}"></script>
  1238. {% endblock %}