templates/vendre_entreprise/participations_de_fonds.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/reprendre_entreprise/entreprise.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_participations_de_fonds.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_participations_fonds', {'codePays' : codePaysWithUnderScore}) }}" title="{{ translate("acheteurs potentiels",lang,"","M") | raw }} - {{ translate("participations de fonds",lang,"","M") | raw }}">{{ translate("acheteurs potentiels",lang,"","M") | raw }} - {{ translate("participations de fonds",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_participations_fonds_localisation', {'slug': localisation.nom_localisation|slugify, 'type': type_loc, 'idLocalisation': localisation.id_localisation, 'codePays': codePaysWithUnderScore}) }}"
  44.                                            title="{{ translate("participations de fonds %$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_participations_fonds', {'codePays' : codePaysWithUnderScore}) }}" title="{{ translate("acheteurs potentiels",lang,"","M") | raw }} - {{ translate("participations de fonds",lang,"","M") | raw }}">{{ translate("acheteurs potentiels",lang,"","M") | raw }} - {{ translate("participations de fonds",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_participations_fonds_secteur_activite', {'slug': secteurActivite.nomSecteurActivite|slugify, 'idSecteurActivite': secteurActivite.idSecteurActivite, 'codePays': codePaysWithUnderScore}) }}"
  59.                                            title="{{ translate("participations de fonds %$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_participations_fonds', {'codePays' : codePaysWithUnderScore}) }}" title="{{ translate("acheteurs potentiels",lang,"","M") | raw }} - {{ translate("participations de fonds",lang,"","M") | raw }}">{{ translate("acheteurs potentiels",lang,"","M") | raw }} - {{ translate("participations de fonds",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_participations_fonds_secteur_activite', {'slug': secteurActivite.nomSecteurActivite|slugify, 'idSecteurActivite': secteurActivite.idSecteurActivite, 'codePays': codePaysWithUnderScore}) }}"
  73.                                        title="{{ translate("participations de fonds %$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_participations_fonds_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("participations de fonds %$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("participations de fonds",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("participations de fonds",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_participations_fonds_localisation', {'slug': prev_localisation.nom_localisation|slugify, 'type': prev_localisation.type, 'idLocalisation': prev_localisation.id_localisation, 'codePays': codePaysWithUnderScore}) }}" title="{{ translate("participations de fonds %$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_participations_fonds }})</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_participations_fonds > 0 %}
  162.                                                                 <a href="{{ path('vendre_entreprise_participations_fonds_localisation', {'slug' : element.nom_localisation|slugify, 'idLocalisation' : element.id_localisation, 'type' : element.type, 'codePays' : codePaysWithUnderScore }) }}" title="{{ translate("participations de fonds %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  163.                                                                     {{ element.nom_localisation }} ({{ element.nb_participations_fonds }})
  164.                                                                 </a>
  165.                                                             {% else %}
  166.                                                                 <span class="disabled-link">{{ element.nom_localisation }} ({{ element.nb_participations_fonds }})</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_participations_fonds > 0 %}
  181.                                                                     <a href="{{ path('vendre_entreprise_participations_fonds_localisation', {'slug' : element.nom_localisation|slugify, 'idLocalisation' : element.id_localisation, 'type' : element.type, 'codePays' : codePaysWithUnderScore }) }}" title="{{ translate("participations de fonds %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  182.                                                                         {{ element.nom_localisation }} ({{ element.nb_participations_fonds }})
  183.                                                                     </a>
  184.                                                                 {% else %}
  185.                                                                     <span class="disabled-link">{{ element.nom_localisation }} ({{ element.nb_participations_fonds }})</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_participations_fonds > 0 %}
  199.                                                                     <a href="{{ path('vendre_entreprise_participations_fonds_localisation', {'slug' : element.nom_localisation|slugify, 'idLocalisation' : element.id_localisation, 'type' : element.type, 'codePays' : codePaysWithUnderScore }) }}" title="{{ translate("participations de fonds %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  200.                                                                         {{ element.nom_localisation }} ({{ element.nb_participations_fonds }})
  201.                                                                     </a>
  202.                                                                 {% else %}
  203.                                                                     <span class="disabled-link">{{ element.nom_localisation }} ({{ element.nb_participations_fonds }})</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_participations_fonds_secteur_activite', {'slug': prev_secteur.nomSecteurActivite|slugify, 'idSecteurActivite': prev_secteur.idSecteurActivite, 'codePays': codePaysWithUnderScore}) }}" title="{{ translate("participations de fonds %$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_participations_fonds }})</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_participations_fonds > 0 %}
  247.                                                                 <a href="{{ path('vendre_entreprise_participations_fonds_secteur_activite', {'slug' : element.nomSecteurActivite|slugify, 'idSecteurActivite' : element.idSecteurActivite, 'codePays' : codePaysWithUnderScore }) }}"
  248.                                                                    title="{{ translate("participations de fonds %$nomPourTitle%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  249.                                                                     {{ element.nomSecteurActivite }} ({{ element.nb_participations_fonds }})
  250.                                                                 </a>
  251.                                                             {% else %}
  252.                                                                 <span class="disabled-link">{{ element.nomSecteurActivite }} ({{ element.nb_participations_fonds }})</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_participations_fonds > 0 %}
  267.                                                                     <a href="{{ path('vendre_entreprise_participations_fonds_secteur_activite', {'slug' : element.nomSecteurActivite|slugify, 'idSecteurActivite' : element.idSecteurActivite, 'codePays' : codePaysWithUnderScore }) }}"
  268.                                                                        title="{{ translate("participations de fonds %$nomPourTitle%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  269.                                                                         {{ element.nomSecteurActivite }} ({{ element.nb_participations_fonds }})
  270.                                                                     </a>
  271.                                                                 {% else %}
  272.                                                                     <span class="disabled-link">{{ element.nomSecteurActivite }} ({{ element.nb_participations_fonds }})</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_participations_fonds > 0 %}
  286.                                                                     <a href="{{ path('vendre_entreprise_participations_fonds_secteur_activite', {'slug' : element.nomSecteurActivite|slugify, 'idSecteurActivite' : element.idSecteurActivite, 'codePays' : codePaysWithUnderScore }) }}"
  287.                                                                        title="{{ translate("participations de fonds %$nomPourTitle%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  288.                                                                         {{ element.nomSecteurActivite }} ({{ element.nb_participations_fonds }})
  289.                                                                     </a>
  290.                                                                 {% else %}
  291.                                                                     <span class="disabled-link">{{ element.nomSecteurActivite }} ({{ element.nb_participations_fonds }})</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_participations_fonds_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("participations de fonds %$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_participations_fonds }})</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_participations_fonds > 0 %}
  334.                                                                 <a href="{{ path('vendre_entreprise_participations_fonds_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("participations de fonds %$nomPourTitle%$ %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  336.                                                                     {{ element.nom_localisation }} ({{ element.nb_participations_fonds }})
  337.                                                                 </a>
  338.                                                             {% else %}
  339.                                                                 <span class="disabled-link">{{ element.nom_localisation }} ({{ element.nb_participations_fonds }})</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_participations_fonds > 0 %}
  354.                                                                     <a href="{{ path('vendre_entreprise_participations_fonds_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("participations de fonds %$nomPourTitle%$ %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  356.                                                                         {{ element.nom_localisation }} ({{ element.nb_participations_fonds }})
  357.                                                                     </a>
  358.                                                                 {% else %}
  359.                                                                     <span class="disabled-link">{{ element.nom_localisation }} ({{ element.nb_participations_fonds }})</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_participations_fonds > 0 %}
  373.                                                                     <a href="{{ path('vendre_entreprise_participations_fonds_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("participations de fonds %$nomPourTitle%$ %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  375.                                                                         {{ element.nom_localisation }} ({{ element.nb_participations_fonds }})
  376.                                                                     </a>
  377.                                                                 {% else %}
  378.                                                                     <span class="disabled-link">{{ element.nom_localisation }} ({{ element.nb_participations_fonds }})</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_participations_fonds',{'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 bl_gris lh13">
  516.                                         <a class="nav-item nav-link" href="{{ path('vendre_entreprise_acquereur_historique_localisation',{'slug':slug, 'type':type, 'idLocalisation':idLocalisation, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
  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.                                         </a>
  523.                                     </div>
  524.                                     <div class="col-6 col-sm-5 no-padding-x lh13 br_gris bl_m_gris">
  525.                                         <div class="nav-item nav-link active">
  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>
  531.                                         </div>
  532.                                     </div>
  533.                                 </div>
  534.                             </nav>
  535.                         </div>
  536.                     </div>
  537.                 {% elseif idSecteurActivite and not idLocalisation %}
  538.                     <div class="row" >
  539.                         <div class="col-12 mb-3 ml-3">
  540.                             {% set p = "" %}
  541.                             {% if ( nb_annonces > 1 ) %}
  542.                                 {% set p = "p" %}
  543.                             {% endif %}
  544.                             {% set arrayVarsTrans =  {"nomPourTitle": secteurActivites|last.nomPourTitle|lower }  %}
  545.                             <span class="fs13 vert">{{ nb_annonces }} {{ translate("$$acheteur$${p|acheteurs} dont",lang,"","m", p) | raw }} :</span>
  546.                         </div>
  547.                     </div>
  548.                     <!--MOBILE-->
  549.                     <div class="row d-block d-sm-none bkg_gris_clair">
  550.                         <div class="col-12">
  551.                             <div class="row">
  552.                                 <div class="col-6  text-center my-3 br_gris">
  553.                                     <div class="blanc lh099 py-3">
  554.                                         <a href="{{ path('vendre_entreprise_annonces_acquisition_secteur_activite',{'slug': slug, 'idSecteurActivite' : idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="vert lh099 py-3">
  555.                                             <span class="fs2">{{ nb_annonces_acquisition }}</span><br>
  556.                                             {% set p = "" %}
  557.                                             {% if ( nb_annonces_acquisition > 1 ) %}
  558.                                                 {% set p = "p" %}
  559.                                             {% endif %}
  560.                                             <span class="res_font">{{ translate("$$annonce$${p|annonces}<br>d'acquisition",lang,"","m", p) | raw }}</span>
  561.                                         </a>
  562.                                     </div>
  563.                                 </div>
  564.                                 <div class="col-6 text-center my-3">
  565.                                     <div class="blanc lh099 py-3">
  566.                                         <a href="{{ path('vendre_entreprise_cv_repreneur_secteur_activite',{'slug': slug, 'idSecteurActivite' : idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="vert lh099 py-3">
  567.                                             <span class="fs2">{{ nb_cvs }}</span><br>
  568.                                             {% set p = "" %}
  569.                                             {% if ( nb_cvs > 1 ) %}
  570.                                                 {% set p = "p" %}
  571.                                             {% endif %}
  572.                                             <span class="res_font">{{ translate("CV de <br>$$repreneur$${p|repreneurs}",lang,"","M", p) | raw }}</span>
  573.                                         </a>
  574.                                     </div>
  575.                                 </div>
  576.                                 <div class="col-6 text-center my-3 br_gris">
  577.                                     <div class="blanc bkg_vert lh099 py-3">
  578.                                         <span class="fs2">{{ nb_acheteurs_potentiels }}</span><br>
  579.                                         {% set p = "" %}
  580.                                         {% if ( nb_acheteurs_potentiels > 1 ) %}
  581.                                             {% set p = "p" %}
  582.                                         {% endif %}
  583.                                         <span class="res_font">{{ translate("$$acheteur<br>potentiel$${p|acheteurs<br>potentiels}",lang,"","m", p) | raw }}</span>
  584.                                     </div>
  585.                                 </div>
  586.                                 <div class="col-6 text-center my-3 pr-4">
  587.                                     <div class="blanc lh099 py-3">
  588.                                         <a href="{{ path('vendre_entreprise_fonds_acquereur_secteur_activite',{'slug': slug, 'idSecteurActivite' : idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="vert lh099 py-3">
  589.                                             <span class="fs2">{{ nb_investisseurs_acquereurs }}</span><br>
  590.                                             {% set p = "" %}
  591.                                             {% if ( nb_investisseurs_acquereurs > 1 ) %}
  592.                                                 {% set p = "p" %}
  593.                                             {% endif %}
  594.                                             <span class="res_font">{{ translate("$$fonds<br>acquereur$${p|fonds<br>acquereurs}",lang,"","m", p) | raw }}</span></a>
  595.                                     </div>
  596.                                 </div>
  597.                             </div>
  598.                         </div>
  599.                     </div>
  600.                     <!--MOBILE-->
  601.                     <!--TOUT SAUF MOBILE-->
  602.                     <div class="row d-none d-sm-block">
  603.                         <div class="onglet5 col-12 mb-4">
  604.                             <nav>
  605.                                 <div class="nav nav-tabs nav-fill" id="nav-tab" role="tablist">
  606.                                     <div class="col-12 col-sm-3 no-padding-x bl_gris lh13 order-4 order-sm-1">
  607.                                         <a class="nav-item nav-link" href="{{ path('vendre_entreprise_annonces_acquisition_secteur_activite',{'slug': slug, 'idSecteurActivite' : idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
  608.                                             {% set p = "" %}
  609.                                             {% if ( nb_annonces_acquisition > 1 ) %}
  610.                                                 {% set p = "p" %}
  611.                                             {% endif %}
  612.                                             <span class="fs2">{{ nb_annonces_acquisition }}</span><br><span class="fs12">{{ translate("$$annonce$${p|annonces}<br>d'acquisition",lang,"","m", p) | raw }}</span>
  613.                                         </a>
  614.                                     </div>
  615.                                     <div class="col-12 col-sm-3 no-padding-x bl_gris br_gris lh13 order-sm-2">
  616.                                         <a class="nav-item nav-link" href="{{ path('vendre_entreprise_cv_repreneur_secteur_activite',{'slug': slug, 'idSecteurActivite' : idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
  617.                                             {% set p = "" %}
  618.                                             {% if ( nb_cvs > 1 ) %}
  619.                                                 {% set p = "p" %}
  620.                                             {% endif %}
  621.                                             <span class="fs2">{{ nb_cvs }}</span><br><span class="fs12">{{ translate("CV de <br>$$repreneur$${p|repreneurs}",lang,"","M", p) | raw }}</span>
  622.                                         </a>
  623.                                     </div>
  624.                                     <div class="col-12 col-sm-3 no-padding-x br_gris  lh13 order-sm-3">
  625.                                         <div class="nav-item nav-link active">
  626.                                             {% set p = "" %}
  627.                                             {% if ( nb_acheteurs_potentiels > 1 ) %}
  628.                                                 {% set p = "p" %}
  629.                                             {% endif %}
  630.                                             <span class="fs2">{{ nb_acheteurs_potentiels }}</span><br><span class="fs12">{{ translate("$$acheteur<br>potentiel$${p|acheteurs<br>potentiels}",lang,"","m", p) | raw }}</span>
  631.                                         </div>
  632.                                     </div>
  633.                                     <div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-4">
  634.                                         <a class="nav-item nav-link" href="{{ path('vendre_entreprise_fonds_acquereur_secteur_activite',{'slug': slug, 'idSecteurActivite' : idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
  635.                                             {% set p = "" %}
  636.                                             {% if ( nb_investisseurs_acquereurs > 1 ) %}
  637.                                                 {% set p = "p" %}
  638.                                             {% endif %}
  639.                                             <span class="fs2">{{ nb_investisseurs_acquereurs }}</span><br><span class="fs12">{{ translate("$$fonds<br>acquereur$${p|fonds<br>acquereurs}",lang,"","m", p) | raw }}</span>
  640.                                         </a>
  641.                                     </div>
  642.                                 </div>
  643.                             </nav>
  644.                         </div>
  645.                     </div>
  646.                     <!--TOUT SAUF MOBILE-->
  647.                     <div class="row mt-5">
  648.                         <div class="onglet5 col-12 col-sm-6 offset-sm-5 mb-4">
  649.                             <nav>
  650.                                 <div class="nav nav-tabs nav-fill" id="nav-tab" role="tablist">
  651.                                     <div class="col-6 col-sm-5 no-padding-x bl_gris lh13">
  652.                                         <a class="nav-item nav-link" href="{{ path('vendre_entreprise_acquereur_historique_secteur_activite',{'slug':slug, 'idSecteurActivite':idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
  653.                                             {% set p = "" %}
  654.                                             {% if ( nb_acquereurs_historiques > 1 ) %}
  655.                                                 {% set p = "p" %}
  656.                                             {% endif %}
  657.                                             <span class="fs2">{{ nb_acquereurs_historiques }}</span><br><span class="fs12">{{ translate("$$acquereur<br>historique$${p|acquereurs<br>historiques}",lang,"","m", p) | raw }}</span>
  658.                                         </a>
  659.                                     </div>
  660.                                     <div class="col-6 col-sm-5 no-padding-x lh13 br_gris bl_m_gris">
  661.                                         <div class="nav-item nav-link active">
  662.                                             {% set p = "" %}
  663.                                             {% if ( nb_participations_fonds > 1 ) %}
  664.                                                 {% set p = "p" %}
  665.                                             {% endif %}
  666.                                             <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>
  667.                                         </div>
  668.                                     </div>
  669.                                 </div>
  670.                             </nav>
  671.                         </div>
  672.                     </div>
  673.                 {% elseif idLocalisation and idSecteurActivite %}
  674.                     <div class="row" >
  675.                         <div class="col-12 mb-3 ml-3">
  676.                             {% set p = "" %}
  677.                             {% if ( nb_annonces > 1 ) %}
  678.                                 {% set p = "p" %}
  679.                             {% endif %}
  680.                             {% set arrayVarsTrans =  {"prefixe": localisations|last.prefixe, "nom_localisation" : localisations|last.nom_localisation, "nomPourTitle": secteurActivites|last.nomPourTitle|lower }  %}
  681.                             <span class="fs13 vert">{{ nb_annonces }} {{ translate("$$acheteur$${p|acheteurs} dont",lang,"","m", p) | raw }} :</span>
  682.                         </div>
  683.                     </div>
  684.                     <!--MOBILE-->
  685.                     <div class="row d-block d-sm-none bkg_gris_clair">
  686.                         <div class="col-12">
  687.                             <div class="row">
  688.                                 <div class="col-6  text-center my-3 br_gris">
  689.                                     <div class="blanc lh099 py-3">
  690.                                         <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">
  691.                                             <span class="fs2">{{ nb_annonces_acquisition }}</span><br>
  692.                                             {% set p = "" %}
  693.                                             {% if ( nb_annonces_acquisition > 1 ) %}
  694.                                                 {% set p = "p" %}
  695.                                             {% endif %}
  696.                                             <span class="res_font">{{ translate("$$annonce$${p|annonces}<br>d'acquisition",lang,"","m", p) | raw }}</span>
  697.                                         </a>
  698.                                     </div>
  699.                                 </div>
  700.                                 <div class="col-6 text-center my-3">
  701.                                     <div class="blanc lh099 py-3">
  702.                                         <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">
  703.                                             <span class="fs2">{{ nb_cvs }}</span><br>
  704.                                             {% set p = "" %}
  705.                                             {% if ( nb_cvs > 1 ) %}
  706.                                                 {% set p = "p" %}
  707.                                             {% endif %}
  708.                                             <span class="res_font">{{ translate("CV de <br>$$repreneur$${p|repreneurs}",lang,"","M", p) | raw }}</span>
  709.                                         </a>
  710.                                     </div>
  711.                                 </div>
  712.                                 <div class="col-6 text-center my-3 br_gris">
  713.                                     <div class="blanc bkg_vert lh099 py-3">
  714.                                         <span class="fs2">{{ nb_acheteurs_potentiels }}</span><br>
  715.                                         {% set p = "" %}
  716.                                         {% if ( nb_acheteurs_potentiels > 1 ) %}
  717.                                             {% set p = "p" %}
  718.                                         {% endif %}
  719.                                         <span class="res_font">{{ translate("$$acheteur<br>potentiel$${p|acheteurs<br>potentiels}",lang,"","m", p) | raw }}</span>
  720.                                     </div>
  721.                                 </div>
  722.                                 <div class="col-6 text-center my-3 pr-4">
  723.                                     <div class="blanc lh099 py-3">
  724.                                         <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">
  725.                                             <span class="fs2">{{ nb_investisseurs_acquereurs }}</span><br>
  726.                                             {% set p = "" %}
  727.                                             {% if ( nb_investisseurs_acquereurs > 1 ) %}
  728.                                                 {% set p = "p" %}
  729.                                             {% endif %}
  730.                                             <span class="res_font">{{ translate("$$fonds<br>acquereur$${p|fonds<br>acquereurs}",lang,"","m", p) | raw }}</span></a>
  731.                                     </div>
  732.                                 </div>
  733.                             </div>
  734.                         </div>
  735.                     </div>
  736.                     <!--MOBILE-->
  737.                     <!--TOUT SAUF MOBILE-->
  738.                     <div class="row d-none d-sm-block">
  739.                         <div class="onglet5 col-12 mb-4">
  740.                             <nav>
  741.                                 <div class="nav nav-tabs nav-fill" id="nav-tab" role="tablist">
  742.                                     <div class="col-12 col-sm-3 no-padding-x bl_gris lh13 order-4 order-sm-1">
  743.                                         <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 }}">
  744.                                             {% set p = "" %}
  745.                                             {% if ( nb_annonces_acquisition > 1 ) %}
  746.                                                 {% set p = "p" %}
  747.                                             {% endif %}
  748.                                             <span class="fs2">{{ nb_annonces_acquisition }}</span><br><span class="fs12">{{ translate("$$annonce$${p|annonces}<br>d'acquisition",lang,"","m", p) | raw }}</span>
  749.                                         </a>
  750.                                     </div>
  751.                                     <div class="col-12 col-sm-3 no-padding-x bl_gris br_gris  lh13 order-sm-2">
  752.                                         <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 }}">
  753.                                             {% set p = "" %}
  754.                                             {% if ( nb_cvs > 1 ) %}
  755.                                                 {% set p = "p" %}
  756.                                             {% endif %}
  757.                                             <span class="fs2">{{ nb_cvs }}</span><br><span class="fs12">{{ translate("CV de <br>$$repreneur$${p|repreneurs}",lang,"","M", p) | raw }}</span>
  758.                                         </a>
  759.                                     </div>
  760.                                     <div class="col-12 col-sm-3 no-padding-x br_gris  lh13 order-sm-3">
  761.                                         <div class="nav-item nav-link active">
  762.                                             {% set p = "" %}
  763.                                             {% if ( nb_acheteurs_potentiels > 1 ) %}
  764.                                                 {% set p = "p" %}
  765.                                             {% endif %}
  766.                                             <span class="fs2">{{ nb_acheteurs_potentiels }}</span><br><span class="fs12">{{ translate("$$acheteur<br>potentiel$${p|acheteurs<br>potentiels}",lang,"","m", p) | raw }}</span>
  767.                                         </div>
  768.                                     </div>
  769.                                     <div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-4">
  770.                                         <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 }}">
  771.                                             {% set p = "" %}
  772.                                             {% if ( nb_investisseurs_acquereurs > 1 ) %}
  773.                                                 {% set p = "p" %}
  774.                                             {% endif %}
  775.                                             <span class="fs2">{{ nb_investisseurs_acquereurs }}</span><br><span class="fs12">{{ translate("$$fonds<br>acquereur$${p|fonds<br>acquereurs}",lang,"","m", p) | raw }}</span>
  776.                                         </a>
  777.                                     </div>
  778.                                 </div>
  779.                             </nav>
  780.                         </div>
  781.                     </div>
  782.                     <!--TOUT SAUF MOBILE-->
  783.                     <div class="row mt-5">
  784.                         <div class="onglet5 col-12 col-sm-6 offset-sm-5 mb-4">
  785.                             <nav>
  786.                                 <div class="nav nav-tabs nav-fill" id="nav-tab" role="tablist">
  787.                                     <div class="col-6 col-sm-5 no-padding-x bl_gris lh13">
  788.                                         <a class="nav-item nav-link" href="{{ path('vendre_entreprise_acquereur_historique_croise',{'nomLocalisation': localisations|last.nom_localisation|slugify, 'nomSecteurActivite' : secteurActivites|last.nomSecteurActivite|slugify, 'type': type, 'idLocalisation': localisations|last.id_localisation, 'idSecteurActivite' : secteurActivites|last.idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
  789.                                             {% set p = "" %}
  790.                                             {% if ( nb_acquereurs_historiques > 1 ) %}
  791.                                                 {% set p = "p" %}
  792.                                             {% endif %}
  793.                                             <span class="fs2">{{ nb_acquereurs_historiques }}</span><br><span class="fs12">{{ translate("$$acquereur<br>historique$${p|acquereurs<br>historiques}",lang,"","m", p) | raw }}</span>
  794.                                         </a>
  795.                                     </div>
  796.                                     <div class="col-6 col-sm-5 no-padding-x lh13 br_gris bl_m_gris">
  797.                                         <div class="nav-item nav-link active">
  798.                                             {% set p = "" %}
  799.                                             {% if ( nb_participations_fonds > 1 ) %}
  800.                                                 {% set p = "p" %}
  801.                                             {% endif %}
  802.                                             <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>
  803.                                         </div>
  804.                                     </div>
  805.                                 </div>
  806.                             </nav>
  807.                         </div>
  808.                     </div>
  809.                 {% else %}
  810.                     <div class="row" >
  811.                         <div class="col-12 mb-3 ml-3">
  812.                             {% set p = "" %}
  813.                             {% if ( nb_annonces > 1 ) %}
  814.                                 {% set p = "p" %}
  815.                             {% endif %}
  816.                             <span class="fs13 vert">{{ nb_annonces }} {{ translate("$$acheteur$${p|acheteurs} dont",lang,"","m", p) | raw }} :</span>
  817.                         </div>
  818.                     </div>
  819.                     <!--MOBILE-->
  820.                     <div class="row d-block d-sm-none bkg_gris_clair">
  821.                         <div class="col-12">
  822.                             <div class="row">
  823.                                 <div class="col-6  text-center my-3 bl_gris">
  824.                                     <div class="blanc lh099 py-3">
  825.                                         <a href="{{ path('vendre_entreprise_resultats_annonces_acquisition',{'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="vert lh099 py-3">
  826.                                             <span class="fs2">{{ nb_annonces_acquisition }}</span><br>
  827.                                             {% set p = "" %}
  828.                                             {% if ( nb_annonces_acquisition > 1 ) %}
  829.                                                 {% set p = "p" %}
  830.                                             {% endif %}
  831.                                             <span class="res_font">{{ translate("$$annonce$${p|annonces}<br>d'acquisition",lang,"","m", p) | raw }}</span>
  832.                                         </a>
  833.                                     </div>
  834.                                 </div>
  835.                                 <div class="col-6 text-center my-3">
  836.                                     <div class="blanc lh099 py-3">
  837.                                         <a href="{{ path('vendre_entreprise_resultats_cv_repreneur',{'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="vert lh099 py-3">
  838.                                             <span class="fs2">{{ nb_cvs }}</span><br>
  839.                                             {% set p = "" %}
  840.                                             {% if ( nb_cvs > 1 ) %}
  841.                                                 {% set p = "p" %}
  842.                                             {% endif %}
  843.                                             <span class="res_font">{{ translate("CV de <br>$$repreneur$${p|repreneurs}",lang,"","M", p) | raw }}</span>
  844.                                         </a>
  845.                                     </div>
  846.                                 </div>
  847.                                 <div class="col-6 text-center my-3 br_gris">
  848.                                     <div class="blanc bkg_vert lh099 py-3">
  849.                                         <span class="fs2">{{ nb_acheteurs_potentiels }}</span><br>
  850.                                         {% set p = "" %}
  851.                                         {% if ( nb_acheteurs_potentiels > 1 ) %}
  852.                                             {% set p = "p" %}
  853.                                         {% endif %}
  854.                                         <span class="res_font">{{ translate("$$acheteur<br>potentiel$${p|acheteurs<br>potentiels}",lang,"","m", p) | raw }}</span>
  855.                                     </div>
  856.                                 </div>
  857.                                 <div class="col-6 text-center my-3 pr-4">
  858.                                     <div class="blanc lh099 py-3">
  859.                                         <a href="{{ path('vendre_entreprise_resultats_fonds_acquereur',{'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="vert lh099 py-3">
  860.                                             <span class="fs2">{{ nb_investisseurs_acquereurs }}</span><br>
  861.                                             {% set p = "" %}
  862.                                             {% if ( nb_investisseurs_acquereurs > 1 ) %}
  863.                                                 {% set p = "p" %}
  864.                                             {% endif %}
  865.                                             <span class="res_font">{{ translate("$$fonds<br>acquereur$${p|fonds<br>acquereurs}",lang,"","m", p) | raw }}</span>
  866.                                         </a>
  867.                                     </div>
  868.                                 </div>
  869.                             </div>
  870.                         </div>
  871.                     </div>
  872.                     <!--MOBILE-->
  873.                     <!--TOUT SAUF MOBILE-->
  874.                     <div class="row d-none d-sm-block">
  875.                         <div class="onglet5 col-12 mb-4">
  876.                             <nav>
  877.                                 <div class="nav nav-tabs nav-fill" id="nav-tab" role="tablist">
  878.                                     <div class="col-12 col-sm-3 no-padding-x bl_gris lh13 order-4 order-sm-1">
  879.                                         <a class="nav-item nav-link" href="{{ path('vendre_entreprise_resultats_annonces_acquisition',{'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
  880.                                             {% set p = "" %}
  881.                                             {% if ( nb_annonces_acquisition > 1 ) %}
  882.                                                 {% set p = "p" %}
  883.                                             {% endif %}
  884.                                             <span class="fs2">{{ nb_annonces_acquisition }}</span><br><span class="fs12">{{ translate("$$annonce$${p|annonces}<br>d'acquisition",lang,"","m", p) | raw }}</span>
  885.                                         </a>
  886.                                     </div>
  887.                                     <div class="col-12 col-sm-3 no-padding-x bl_gris br_gris  lh13 order-sm-2">
  888.                                         <a class="nav-item nav-link" href="{{ path('vendre_entreprise_resultats_cv_repreneur',{'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
  889.                                             {% set p = "" %}
  890.                                             {% if ( nb_cvs > 1 ) %}
  891.                                                 {% set p = "p" %}
  892.                                             {% endif %}
  893.                                             <span class="fs2">{{ nb_cvs }}</span><br><span class="fs12">{{ translate("CV de <br>$$repreneur$${p|repreneurs}",lang,"","M", p) | raw }}</span>
  894.                                         </a>
  895.                                     </div>
  896.                                     <div class="col-12 col-sm-3 no-padding-x br_gris  lh13 order-sm-3">
  897.                                         <div class="nav-item nav-link active">
  898.                                             {% set p = "" %}
  899.                                             {% if ( nb_acheteurs_potentiels > 1 ) %}
  900.                                                 {% set p = "p" %}
  901.                                             {% endif %}
  902.                                             <span class="fs2">{{ nb_acheteurs_potentiels }}</span><br><span class="fs12">{{ translate("$$acheteur<br>potentiel$${p|acheteurs<br>potentiels}",lang,"","m", p) | raw }}</span>
  903.                                         </div>
  904.                                     </div>
  905.                                     <div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-4">
  906.                                         <a class="nav-item nav-link" href="{{ path('vendre_entreprise_resultats_fonds_acquereur',{'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
  907.                                             {% set p = "" %}
  908.                                             {% if ( nb_investisseurs_acquereurs > 1 ) %}
  909.                                                 {% set p = "p" %}
  910.                                             {% endif %}
  911.                                             <span class="fs2">{{ nb_investisseurs_acquereurs }}</span><br><span class="fs12">{{ translate("$$fonds<br>acquereur$${p|fonds<br>acquereurs}",lang,"","m", p) | raw }}</span>
  912.                                         </a>
  913.                                     </div>
  914.                                 </div>
  915.                             </nav>
  916.                         </div>
  917.                     </div>
  918.                     <!--TOUT SAUF MOBILE-->
  919.                     <div class="row mt-5">
  920.                         <div class="onglet5 col-12 col-sm-6 offset-sm-5 mb-4">
  921.                             <nav>
  922.                                 <div class="nav nav-tabs nav-fill" id="nav-tab" role="tablist">
  923.                                     <div class="col-6 col-sm-5 no-padding-x bl_gris lh13">
  924.                                         <a class="nav-item nav-link" href="{{ path('vendre_entreprise_resultats_acquereur_historique',{'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
  925.                                             {% set p = "" %}
  926.                                             {% if ( nb_acquereurs_historiques > 1 ) %}
  927.                                                 {% set p = "p" %}
  928.                                             {% endif %}
  929.                                             <span class="fs2">{{ nb_acquereurs_historiques }}</span><br><span class="fs12">{{ translate("$$acquereur<br>historique$${p|acquereurs<br>historiques}",lang,"","m", p) | raw }}</span>
  930.                                         </a>
  931.                                     </div>
  932.                                     <div class="col-6 col-sm-5 no-padding-x lh13 br_gris bl_m_gris">
  933.                                         <div class="nav-item nav-link active">
  934.                                             {% set p = "" %}
  935.                                             {% if ( nb_participations_fonds > 1 ) %}
  936.                                                 {% set p = "p" %}
  937.                                             {% endif %}
  938.                                             <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>
  939.                                         </div>
  940.                                     </div>
  941.                                 </div>
  942.                             </nav>
  943.                         </div>
  944.                     </div>
  945.                 {% endif %}
  946.                 <div class="row mt-5" >
  947.                     <div class="col-12 mb-1 ml-3 mb-5">
  948.                         {% set p = "" %}
  949.                         {% if ( nb_participations_fonds > 1 ) %}
  950.                             {% set p = "p" %}
  951.                         {% endif %}
  952.                         <span class="fs18">
  953.                             {% set arrayVarsTrans = {"complement_titre": complement_titre }  %}
  954.                             {{ nb_participations_fonds }} {{ translate("$$participation de fonds d'investissement$${p|participations de fonds} %$complement_titre%$",lang,"","m", p, arrayVarsTrans) | raw }}
  955.                         </span><br>
  956.                         <a href="#" data-toggle="modal" data-target="#modal-explication" title="" class="underlined">{{ translate('Que sont les "participations de fonds" proposées par FUSACQ ?',lang,"","M") | raw }}</a>
  957.                     </div>
  958.                 </div>
  959.                 
  960.                 {% if nb_acquereurs_pays and nb_acquereurs_pays > 1 %}
  961.                 <div class="row pt-2 text-right mb-5">
  962.                     <div class="col-12">
  963.                         <h5 class="titre_annonce_vert">
  964.                             <a href="{{ path('vendre_entreprise_resultats_participations_fonds', {codePays: codePaysWithUnderScore}) }}?{{ string_params_pays }}">
  965.                                 {% set arrayVarsTrans =  {"nb_acquereurs_pays": nb_acquereurs_pays }  %}
  966.                                 {{ translate("voir aussi les %$nb_acquereurs_pays%$ participations de fonds basées " ~ text_pays_recherche ,lang,"","M", "", arrayVarsTrans) | raw }}
  967.                             </a>
  968.                         </h5>
  969.                     </div>
  970.                 </div>
  971.                 {% endif %}
  972.                 <!--PAGINATION-->
  973.                 <div class="row mt-3">
  974.                     <div class="col-sm-12">
  975.                         <nav aria-label="..." class="pagination-vert">
  976.                             {{ knp_pagination_render(liste_annonces) }}
  977.                         </nav>
  978.                     </div>
  979.                 </div>
  980.                 <!--FIN PAGINATION-->
  981.                 
  982.                 <div class="row mt-3 mb-2">
  983.                     <div class="col-md-7 offset-md-5 text-right mb-2 text-right">
  984.                         <div class="row">
  985.                             <div class="col-12 col-sm-4 pt-2 text-right">
  986.                                 <label for="idFromControlSelectTri">{{ translate("trier par",lang,"","M") | raw }}</label>
  987.                             </div>
  988.                             <div class="col-12 col-sm-8">
  989.                                 <select class="form-control" id="idFromControlSelectTri" v-on:change="sortBy($event)">
  990.                                     <option value="date_desc" {% if tri == "date_desc" or tri_default == 'date_desc' %}selected="selected"{% endif %}>{{ translate("date investissement plus recentes",lang,"","M") | raw }}</option>
  991.                                     <option value="ca_desc" {% if tri == "ca_desc" or tri_default == 'ca_desc' %}selected="selected"{% endif %} >{{ translate("CA plus grand",lang,"","M") | raw }}</option>
  992.                                     <option value="ca_asc" {% if tri == "ca_asc" %}selected="selected"{% endif %}>{{ translate("CA plus petit",lang,"","M") | raw }}</option>
  993.                                 </select>
  994.                             </div>
  995.                         </div>
  996.                     </div>
  997.                 </div>
  998.                 <div class="row" >
  999.                     <div class="col-12">
  1000.                         <!--ANNONCES -->
  1001.                         {% for index, annonce in liste_annonces %}
  1002.                             {% set lienAnnonce = path('participation_fonds_detail',
  1003.                          {
  1004.                              'slug':annonce.slug,
  1005.                             'idParticipation':annonce._get('id_societe'),
  1006.                             'codePays':codePaysWithUnderScore
  1007.                          }) ~ '?from=' ~ from ~ '&urlList=' ~ urlList ~ '&' ~ string_params ~ '&index=' ~ index %}
  1008.                             <div class="card mb-3 card-ie filet_gris">
  1009.                                 <div class="card-body">
  1010.                                     <div class="row">
  1011.                                         {#
  1012.                                         {% if has_service %}
  1013.                                             {% set url = lienAnnonce %}
  1014.                                             {% set modal = "" %}
  1015.                                         {% else %}
  1016.                                             {% set url = "#" %}
  1017.                                             {% set modal = 'data-toggle=modal data-target=#modal-condition' %}
  1018.                                         {% endif %}
  1019.                                         #}
  1020.                                         <div class="col-8 col-md-8 col-lg-9 col-xl-10">
  1021.                                             <div class="mb-2">
  1022.                                                 <h5 class="titre_annonce_vert"><a href="{{ lienAnnonce }}" title="{{ annonce._get('resume_activite') }}">{{ annonce._get('resume_activite') }}</a></h5>
  1023.                                                 {% if annonce.commande %}
  1024.                                                 <span class="orange font_600"><i class="fa-solid fa-circle-check"></i>&nbsp;&nbsp;{{ translate("déjà commandé",lang,"","M") | raw }}</span>
  1025.                                                 {% endif %}
  1026.                                             </div>
  1027.                                             <div class="mb-1">
  1028.                                                 {% if annonce._get('ca_n') %}
  1029.                                                     <span class="nowrap_custom">{{ translate("CA",lang,"","M") | raw }} : <strong>{{ annonce.arrondi_ca | number_format(0, "", " ") }} k€ </strong></span>&nbsp;&nbsp;&nbsp;&nbsp;
  1030.                                                 {% endif %}
  1031.                                                 <span class="nowrap_custom">{{ translate("date d'investissement",lang,"","M") | raw }} <strong>{{ annonce.date_dernier_investissement_formated }}</strong></span>&nbsp;&nbsp;&nbsp;&nbsp;
  1032.                                                 <span class="nowrap_custom">{{ translate("ref.",lang,"","M") | raw }} : <strong>P{{ annonce._get('id_societe') }}</strong></span>
  1033.                                             </div>
  1034.                                             {% if has_service %}
  1035.                                                 <h5 class="titre_annonce_vert"><a href="{{ lienAnnonce }}" title="">{{ annonce._get('raison_sociale') }}</a></h5>
  1036.                                                 {% endif %}
  1037.                                             <i class="fas fa-map-marker-alt"></i>&nbsp; {{ annonce.nom_localisation }}
  1038.                                         </div>
  1039.                                         <div class="col-4 col-md-4 col-lg-3 col-xl-2">
  1040.                                             <div class="row">
  1041.                                                 <div class="col-12 col-md-12 text-center">
  1042.                                                     <a href="{{ lienAnnonce }}" title="{{ annonce.nom_localisation }}"><img class="img-fluid" src="{{ annonce.carte }}" alt="{{ annonce.nom_localisation }}"></a>
  1043.                                                 </div>
  1044.                                             </div>
  1045.                                         </div>
  1046.                                         <div class="col-4 col-md-4 col-lg-4 mt-2">
  1047.                                             <a href="{{ lienAnnonce }}" title="{{ translate("voir les details",lang,"","M") | raw }}">
  1048.                                                 <button type="button" class="btn btn-vert-annonce">
  1049.                                                     <span class="d-none d-xl-block">{{ translate("voir les details",lang,"","M") | raw }}</span>
  1050.                                                     <span class="d-xl-none">{{ translate("details",lang,"","M") | raw }}</span>
  1051.                                                 </button>
  1052.                                             </a>
  1053.                                         </div>
  1054.                                         <!--
  1055.                                         <div class="col-4 col-md-4 col-lg-4 text-center mt-2 pt-2 br_gris">
  1056.                                                 <a href="#" title="{{ translate("partager",lang,"","M") | raw }}" class="lien-contacter-deposant">
  1057.                                                 <i class="fas fa-envelope vert"></i>
  1058.                                                 </a>&nbsp;
  1059.                                                 <a href="#" class="souligne cache_petit vert" title="{{ translate("partager",lang,"","M") | raw }}">{{ translate("partager",lang,"","M") | raw }}</a>
  1060.                                         </div>
  1061.                                         <div class="col-4 col-md-4 col-lg-4 text-right mt-2 pt-2">
  1062.                                                 <a href="#" title="{{ translate("sauvegarder",lang,"","M") | raw }}" class="">
  1063.                                                                     <i class="fas fa-heart vert"></i></a>&nbsp;
  1064.                                                 <a href="#" class="souligne cache_petit vert" title="{{ translate("sauvegarder",lang,"","M") | raw }}" id_u="" id_a="384501">{{ translate("sauvegarder",lang,"","M") | raw }}</a>
  1065.                                         </div>
  1066.                                         -->
  1067.                                     </div>
  1068.                                 </div>
  1069.                             </div>
  1070.                         {% endfor %}
  1071.                         <!--FIN ANNONCES -->
  1072.                     </div>
  1073.                 </div>
  1074.                 <!--PAGINATION-->
  1075.                 <div class="row mt-3">
  1076.                     <div class="col-sm-12">
  1077.                         <nav aria-label="..." class="pagination-vert">
  1078.                             {{ knp_pagination_render(liste_annonces) }}
  1079.                         </nav>
  1080.                     </div>
  1081.                 </div>
  1082.                 <!--FIN PAGINATION-->
  1083.             </div><!--FIN COLONNE DROITE -->
  1084.         </div> <!--FIN ROW CONTAINER -->
  1085.     </div>  <!--FIN CONTAINER -->
  1086.     <!--MODAL-->
  1087.     <div class="modal fade" id="modal-explication" tabindex="-1" role="dialog" aria-labelledby="modal-explicationLabel" aria-hidden="true">
  1088.         <div class="modal-dialog modal-lg" role="document">
  1089.             <div class="modal-content">
  1090.                 <div class="modal-header">
  1091.                     <h5 class="modal-title vert" id="modal-explicationLabel">{{ translate('Que sont les "participations de fonds" proposées par FUSACQ ?',lang,"","M") | raw }}</h5>
  1092.                     <button type="button" class="close" data-dismiss="modal" aria-label="Close">
  1093.                         <span aria-hidden="true">&times;</span>
  1094.                     </button>
  1095.                 </div>
  1096.                 <div class="modal-body text-justify">
  1097.                     <strong>Les participations des fonds d'investissement sont des sociétés ayant des fonds à leur capital.</strong><br><br>
  1098.                     En quoi une participation de fonds est un acheteur potentiel ?<br><br>
  1099.                     <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>
  1100.                 </div>
  1101.                 <div class="modal-footer">
  1102.                     <button type="button" class="btn btn-vert-annonce" data-dismiss="modal">J'ai compris</button>
  1103.                 </div>
  1104.             </div>
  1105.         </div>
  1106.     </div><!--FIN MODAL-->
  1107.     <!--MODAL 2-->
  1108.     <!--<div class="modal fade" id="modal-condition" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
  1109.         <div class="modal-dialog" role="document">
  1110.             <div class="modal-content">
  1111.                 <div class="modal-header">
  1112.                     {% set p = "" %}
  1113.                     {% if ( nb_acquereurs_historiques > 1 ) %}
  1114.                         {% set p = "p" %}
  1115.                     {% endif %}
  1116.                     <h5 class="modal-title bleu" id="exampleModalLabel">{{ nb_acquereurs_historiques }} {{ translate("$$acquereur historique$${p|acquereurs historiques}",lang,"","m", p) | raw }} </h5>
  1117.                     <button type="button" class="close" data-dismiss="modal" aria-label="Close">
  1118.                         <span aria-hidden="true">&times;</span>
  1119.                     </button>
  1120.                 </div>
  1121.                 <div class="modal-body text-center">
  1122.                     Pour accéder aux fiches des acquéreurs historiques vous devez :<br><br><br>
  1123.                     - Souscrire un abonnement simple à <a href="{{ path('tarifs_index', {'codePays' : codePaysWithUnderScore}) }}#participations">l'Annuaire des participations</a><br>
  1124.                     <b>ou</b><br>
  1125.                     - Adhérer à l'offre <a href="{{ path('offreFusacqExpert', {'codePays': codePaysWithUnderScore}) }}" target="_blank"><strong>FUSACQ Expert</strong></a> qui comprend l'ensemble des services Fusacq<br><br><br>
  1126.                     <strong>Pour plus de détails contactez nous au 01&nbsp;48&nbsp;28&nbsp;24&nbsp;24</strong><br>
  1127.                 </div>
  1128.                 <div class="modal-footer">
  1129.                     <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>
  1130.                     <div class="col-6 text-center">Les offres et les tarifs<br>
  1131.                         <a href="{{ path('offreFusacqExpert', {'codePays': codePaysWithUnderScore }) }}" target="_blank">
  1132.                             <button type="button" class="btn btn-fusacq_expert ">Fusacq Expert</button>
  1133.                         </a>
  1134.                     </div>
  1135.                 </div>
  1136.             </div>
  1137.         </div>
  1138.     </div>-->
  1139.     <!--FIN MODAL 2-->
  1140.     
  1141.    <!--MODAL 2-->
  1142.     <div class="modal fade" id="modal-condition" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
  1143.         <div class="modal-dialog modal-lg" role="document">
  1144.           <div class="modal-content">
  1145.             <div class="modal-header">
  1146.                     {% set p = "" %}
  1147.                     {% if ( nb_acquereurs_historiques > 1 ) %}
  1148.                         {% set p = "p" %}
  1149.                     {% endif %}
  1150.               <h5 class="modal-title bleu_fusacq font_600" id="exampleModalLabel">{{ nb_acquereurs_historiques }} {{ translate("$$participation de fonds d'investissement$${p|participations de fonds d'investissement}",lang,"","m", p) | raw }}</h5>
  1151.               <button type="button" class="close" data-dismiss="modal" aria-label="Close">
  1152.                 <span aria-hidden="true">×</span>
  1153.               </button>
  1154.             </div>
  1155.             <div class="modal-body text-justify">
  1156.                 {{ translate("pour accéder aux fiches des participations vous devez",lang,"","M") | raw }} :<br><br>
  1157.                 •&nbsp;{{ translate("souscrire un abonnement simple à l'<strong>Annuaire des participations</strong>",lang,"","M") | raw }}<br>
  1158.                 <div class="text-center pt-2"><a href="/tarifs/tarifs.php_fr_#participations" class="button-rond" role="button" aria-pressed="true">{{ translate("commander",lang,"","M") | raw }}</a></div>
  1159.                 ou<br><br>
  1160.                 •&nbsp;<a href="{{ path('offreFusacqExpert', {'codePays' : codePaysWithUnderScore}) }}" class="fullsouligne"><strong>{{ translate("adhérer à l'offre FUSACQ Expert",lang,"","M") | raw }}</strong></a>{{ translate("qui comprend l'ensemble des services Fusacq",lang,"","M") | raw }} <br>
  1161.                 &nbsp;&nbsp;&nbsp;{{ translate("Pour plus d'informations contactez nous au <strong>01 48 28 24 24</strong>",lang,"","M") | raw }}<br><br>
  1162.     
  1163.     {% if app.session.all.user is not defined %}
  1164.                 <div class="text-center pt-5" style="border-top: 1px solid #CCCCCC;">
  1165.                     {{ translate("J'ai déjà accès à l'<strong>Annuaire des participations</strong>",lang,"","M") | raw }}
  1166.                 </div>
  1167.                 <div class="text-center pt-2">
  1168.                     <a href="#" data-toggle="modal" data-target="#modal-connexion" class="" role="button" aria-pressed="true">
  1169.                     <button id="connect-modal-2" type="button" class="button-rond-blanc">{{ translate("Je me connecte",lang,"","M") | raw }}</button>
  1170.                     </a>
  1171.                 <br><br>
  1172.                 </div>
  1173.     {% endif %}            
  1174.                 
  1175.             </div>
  1176.           </div>
  1177.         </div>
  1178.     </div>
  1179.     <!--FIN MODAL 2-->
  1180.     <!--MODAL 3-->
  1181.     <div class="modal fade" id="modal-connexion" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
  1182.         <div class="modal-dialog" role="document">
  1183.             <div class="modal-content">
  1184.                 <div class="modal-header">
  1185.                     <h5 class="modal-title" id="exampleModalLabel">Connexion</h5>
  1186.                     <button type="button" class="close" data-dismiss="modal" aria-label="Close">
  1187.                         <span aria-hidden="true">&times;</span>
  1188.                     </button>
  1189.                 </div>
  1190.                 <div class="modal-body mt-3">
  1191.                     {{ render_esi(controller(
  1192.                          'App\\Controller\\SecurityController::login',
  1193.                           {"from": "cible_potentielle" }
  1194.                      )) | spaceless }}
  1195.                 </div>
  1196.             </div>
  1197.         </div>
  1198.     </div>
  1199.     <!--FIN MODAL 3-->
  1200. {% endblock %}
  1201. {% block javascripts %}
  1202.     {{ parent() }}
  1203.     <script type="module" data-name="{{ codePaysWithUnderScore }}" id="codePaysParam" src="{{ asset('build/js/reprendre_entreprise/cible_potentielle.js') }}"></script>
  1204.     {% if not has_service %}    
  1205.     <script>
  1206.     $(function(){
  1207.         $('#rechercher').on('click', function(){
  1208.             $('#modal-condition').modal();
  1209.             return false;
  1210.         });
  1211.         $('#connect-modal-2').on('click', function(){
  1212.             $('#modal-condition').modal('hide');
  1213.             $('#modal-connexion').modal('show');
  1214.         });
  1215.     });
  1216.     </script>
  1217.     {% endif %}
  1218. {% endblock %}