templates/vendre_entreprise/cv_repreneur.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block stylesheets %}  {{ parent() }}
  3.     <link rel="stylesheet" href="{{ asset('build/css/annuaires/repreneurs/repreneurs_recherche.css') }}">
  4. {% endblock %}
  5. {% block body %}
  6.     {% include 'assets/assets_vuejs.html.twig' %}
  7.     <!-- Menu  -->
  8.     {{ render_esi(controller(
  9.       'App\\Controller\\CoreController::menu',
  10.       {   "lang": lang,
  11.           "currentRoute":currentRoute,
  12.           "codePays": codePaysWithUnderScore }
  13.     )) | spaceless }}
  14.     <!-- Menu  -->
  15.     <!-- Publicite  -->
  16.     {% include 'includes/publicite.html.twig' %}
  17.     <!-- Publicite  -->
  18.     <div class="container" id="app">
  19.         <div class="row">
  20.             <!--COLONNE GAUCHE -->
  21.             {% include 'includes/colonne_gauche_cv_repreneurs.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_cv_repreneur', {'codePays' : codePaysWithUnderScore}) }}" title="{{ translate("CV de repreneurs",lang,"","M") | raw }}">{{ translate("CV de repreneurs",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_cv_repreneur_localisation', {'slug': localisation.nom_localisation|slugify, 'type': type_loc, 'idLocalisation': localisation.id_localisation, 'codePays': codePaysWithUnderScore}) }}"
  44.                                            title="{{ translate("CV de repreneurs %$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_cv_repreneur', {'codePays' : codePaysWithUnderScore}) }}" title="{{ translate("CV de repreneurs",lang,"","M") | raw }}">{{ translate("CV de repreneurs",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_cv_repreneur_secteur_activite', {'slug': secteurActivite.nomSecteurActivite|slugify, 'idSecteurActivite': secteurActivite.idSecteurActivite, 'codePays': codePaysWithUnderScore}) }}"
  59.                                            title="{{ translate("CV de repreneurs %$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_cv_repreneur', {'codePays' : codePaysWithUnderScore}) }}" title="{{ translate("CV de repreneurs",lang,"","M") | raw }}">{{ translate("CV de repreneurs",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_cv_repreneur_secteur_activite', {'slug': secteurActivite.nomSecteurActivite|slugify, 'idSecteurActivite': secteurActivite.idSecteurActivite, 'codePays': codePaysWithUnderScore}) }}"
  73.                                        title="{{ translate("CV de repreneurs %$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_cv_repreneur_croise', {'nomLocalisation': localisation.nom_localisation|slugify, 'nomSecteurActivite': secteurActivites|last.nomSecteurActivite|slugify, 'type': type_loc, 'idLocalisation': localisation.id_localisation, 'idSecteurActivite': secteurActivites|last.idSecteurActivite, 'codePays': codePaysWithUnderScore}) }}"
  90.                                            title="{{ translate("CV de repreneurs %$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("CV de repreneurs",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 ml-3 mt-3">
  121.                             <h1 class="vert fs2">{{ translate("CV de repreneurs",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_cv_repreneur_localisation', {'slug': prev_localisation.nom_localisation|slugify, 'type': prev_localisation.type, 'idLocalisation': prev_localisation.id_localisation, 'codePays': codePaysWithUnderScore}) }}" title="{{ translate("CV de repreneurs %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  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_cvs }})</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_cvs > 0 %}
  162.                                                                 <a href="{{ path('vendre_entreprise_cv_repreneur_localisation', {'slug' : element.nom_localisation|slugify, 'idLocalisation' : element.id_localisation, 'type' : element.type, 'codePays' : codePaysWithUnderScore }) }}" title="{{ translate("CV de repreneurs %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  163.                                                                     {{ element.nom_localisation }} ({{ element.nb_cvs }})
  164.                                                                 </a>
  165.                                                             {% else %}
  166.                                                                 <span class="disabled-link">{{ element.nom_localisation }} ({{ element.nb_cvs }})</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_cvs > 0 %}
  181.                                                                     <a href="{{ path('vendre_entreprise_cv_repreneur_localisation', {'slug' : element.nom_localisation|slugify, 'idLocalisation' : element.id_localisation, 'type' : element.type, 'codePays' : codePaysWithUnderScore }) }}" title="{{ translate("CV de repreneurs %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  182.                                                                         {{ element.nom_localisation }} ({{ element.nb_cvs }})
  183.                                                                     </a>
  184.                                                                 {% else %}
  185.                                                                     <span class="disabled-link">{{ element.nom_localisation }} ({{ element.nb_cvs }})</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_cvs > 0 %}
  199.                                                                     <a href="{{ path('vendre_entreprise_cv_repreneur_localisation', {'slug' : element.nom_localisation|slugify, 'idLocalisation' : element.id_localisation, 'type' : element.type, 'codePays' : codePaysWithUnderScore }) }}" title="{{ translate("CV de repreneurs %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  200.                                                                         {{ element.nom_localisation }} ({{ element.nb_cvs }})
  201.                                                                     </a>
  202.                                                                 {% else %}
  203.                                                                     <span class="disabled-link">{{ element.nom_localisation }} ({{ element.nb_cvs }})</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_cv_repreneur_secteur_activite', {'slug': prev_secteur.nomSecteurActivite|slugify, 'idSecteurActivite': prev_secteur.idSecteurActivite, 'codePays': codePaysWithUnderScore}) }}" title="{{ translate("CV de repreneurs %$nomPourTitle%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  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_cvs }})</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_cvs > 0 %}
  247.                                                                 <a href="{{ path('vendre_entreprise_cv_repreneur_secteur_activite', {'slug' : element.nomSecteurActivite|slugify, 'idSecteurActivite' : element.idSecteurActivite, 'codePays' : codePaysWithUnderScore }) }}"
  248.                                                                    title="{{ translate("CV de repreneurs %$nomPourTitle%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  249.                                                                     {{ element.nomSecteurActivite }} ({{ element.nb_cvs }})
  250.                                                                 </a>
  251.                                                             {% else %}
  252.                                                                 <span class="disabled-link">{{ element.nomSecteurActivite }} ({{ element.nb_cvs }})</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_cvs > 0 %}
  267.                                                                     <a href="{{ path('vendre_entreprise_cv_repreneur_secteur_activite', {'slug' : element.nomSecteurActivite|slugify, 'idSecteurActivite' : element.idSecteurActivite, 'codePays' : codePaysWithUnderScore }) }}"
  268.                                                                        title="{{ translate("CV de repreneurs %$nomPourTitle%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  269.                                                                         {{ element.nomSecteurActivite }} ({{ element.nb_cvs }})
  270.                                                                     </a>
  271.                                                                 {% else %}
  272.                                                                     <span class="disabled-link">{{ element.nomSecteurActivite }} ({{ element.nb_cvs }})</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_cvs > 0 %}
  286.                                                                     <a href="{{ path('vendre_entreprise_cv_repreneur_secteur_activite', {'slug' : element.nomSecteurActivite|slugify, 'idSecteurActivite' : element.idSecteurActivite, 'codePays' : codePaysWithUnderScore }) }}"
  287.                                                                        title="{{ translate("CV de repreneurs %$nomPourTitle%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  288.                                                                         {{ element.nomSecteurActivite }} ({{ element.nb_cvs }})
  289.                                                                     </a>
  290.                                                                 {% else %}
  291.                                                                     <span class="disabled-link">{{ element.nomSecteurActivite }} ({{ element.nb_cvs }})</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_cv_repreneur_croise', {'nomLocalisation': prev_localisation.nom_localisation|slugify, 'nomSecteurActivite' : secteurActivites|last.nomSecteurActivite|slugify, 'type': prev_localisation.type, 'idLocalisation': prev_localisation.id_localisation, 'idSecteurActivite' : secteurActivites|last.idSecteurActivite, 'codePays': codePaysWithUnderScore}) }}"
  315.                                                        title="{{ translate("CV de repreneurs %$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_cvs }})</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_cvs > 0 %}
  334.                                                                 <a href="{{ path('vendre_entreprise_cv_repreneur_croise', {'nomLocalisation' : element.nom_localisation|slugify, 'nomSecteurActivite' : secteurActivites|last.nomSecteurActivite|slugify, 'idLocalisation' : element.id_localisation, 'type' : element.type, 'idSecteurActivite' : secteurActivites|last.idSecteurActivite, 'codePays' : codePaysWithUnderScore }) }}"
  335.                                                                    title="{{ translate("CV de repreneurs %$nomPourTitle%$ %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  336.                                                                     {{ element.nom_localisation }} ({{ element.nb_cvs }})
  337.                                                                 </a>
  338.                                                             {% else %}
  339.                                                                 <span class="disabled-link">{{ element.nom_localisation }} ({{ element.nb_cvs }})</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_cvs > 0 %}
  354.                                                                     <a href="{{ path('vendre_entreprise_cv_repreneur_croise', {'nomLocalisation' : element.nom_localisation|slugify, 'nomSecteurActivite' : secteurActivites|last.nomSecteurActivite|slugify, 'idLocalisation' : element.id_localisation, 'type' : element.type, 'idSecteurActivite' : secteurActivites|last.idSecteurActivite, 'codePays' : codePaysWithUnderScore }) }}"
  355.                                                                        title="{{ translate("CV de repreneurs %$nomPourTitle%$ %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  356.                                                                         {{ element.nom_localisation }} ({{ element.nb_cvs }})
  357.                                                                     </a>
  358.                                                                 {% else %}
  359.                                                                     <span class="disabled-link">{{ element.nom_localisation }} ({{ element.nb_cvs }})</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_cvs > 0 %}
  373.                                                                     <a href="{{ path('vendre_entreprise_cv_repreneur_croise', {'nomLocalisation' : element.nom_localisation|slugify, 'nomSecteurActivite' : secteurActivites|last.nomSecteurActivite|slugify, 'idLocalisation' : element.id_localisation, 'type' : element.type, 'idSecteurActivite' : secteurActivites|last.idSecteurActivite, 'codePays' : codePaysWithUnderScore }) }}"
  374.                                                                        title="{{ translate("CV de repreneurs %$nomPourTitle%$ %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  375.                                                                         {{ element.nom_localisation }} ({{ element.nb_cvs }})
  376.                                                                     </a>
  377.                                                                 {% else %}
  378.                                                                     <span class="disabled-link">{{ element.nom_localisation }} ({{ element.nb_cvs }})</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_cv_repreneur',{'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 bkg_vert lh099 py-3">
  430.                                         <span class="fs2">{{ nb_cvs }}</span><br>
  431.                                         {% set p = "" %}
  432.                                         {% if ( nb_cvs > 1 ) %}
  433.                                             {% set p = "p" %}
  434.                                         {% endif %}
  435.                                         <span class="res_font">{{ translate("CV de <br>$$repreneur$${p|repreneurs}",lang,"","M", p) | raw }}</span>
  436.                                     </div>
  437.                                 </div>
  438.                                 <div class="col-6 text-center my-3 br_gris">
  439.                                     <div class="blanc lh099 py-3">
  440.                                         <a href="{{ path('vendre_entreprise_acquereur_historique_localisation',{'slug':slug, 'type':type, 'idLocalisation':idLocalisation, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="vert lh099 py-3">
  441.                                             <span class="fs2">{{ nb_acheteurs_potentiels }}</span><br>
  442.                                             {% set p = "" %}
  443.                                             {% if ( nb_acheteurs_potentiels > 1 ) %}
  444.                                                 {% set p = "p" %}
  445.                                             {% endif %}
  446.                                             <span class="res_font">{{ translate("$$acheteur<br>potentiel$${p|acheteurs<br>potentiels}",lang,"","m", p) | raw }}</span></a>
  447.                                     </div>
  448.                                 </div>
  449.                                 <div class="col-6 text-center my-3 pr-4">
  450.                                     <div class="blanc lh099 py-3">
  451.                                         <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">
  452.                                             <span class="fs2">{{ nb_investisseurs_acquereurs }}</span><br>
  453.                                             {% set p = "" %}
  454.                                             {% if ( nb_investisseurs_acquereurs > 1 ) %}
  455.                                                 {% set p = "p" %}
  456.                                             {% endif %}
  457.                                             <span class="res_font">{{ translate("$$fonds<br>acquereur$${p|fonds<br>acquereurs}",lang,"","m", p) | raw }}</span></a>
  458.                                     </div>
  459.                                 </div>
  460.                             </div>
  461.                         </div>
  462.                     </div>
  463.                     <!--MOBILE-->
  464.                     <!--TOUT SAUF MOBILE-->
  465.                     <div class="row d-none d-sm-block">
  466.                         <div class="onglet5 col-12 mb-4">
  467.                             <nav>
  468.                                 <div class="nav nav-tabs nav-fill" id="nav-tab" role="tablist">
  469.                                     <div class="col-12 col-sm-3 no-padding-x bl_gris lh13 order-4 order-sm-1">
  470.                                         <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 }}">
  471.                                             {% set p = "" %}
  472.                                             {% if ( nb_annonces_acquisition > 1 ) %}
  473.                                                 {% set p = "p" %}
  474.                                             {% endif %}
  475.                                             <span class="fs2">{{ nb_annonces_acquisition }}</span><br><span class="fs12">{{ translate("$$annonce$${p|annonces}<br>d'acquisition",lang,"","m", p) | raw }}</span>
  476.                                         </a>
  477.                                     </div>
  478.                                     <div class="col-12 col-sm-3 no-padding-x br_gris  lh13 order-sm-2">
  479.                                         <div class="nav-item nav-link active">
  480.                                             {% set p = "" %}
  481.                                             {% if ( nb_cvs > 1 ) %}
  482.                                                 {% set p = "p" %}
  483.                                             {% endif %}
  484.                                             <span class="fs2">{{ nb_cvs }}</span><br><span class="fs12">{{ translate("CV de <br>$$repreneur$${p|repreneurs}",lang,"","M", p) | raw }}</span>
  485.                                         </div>
  486.                                     </div>
  487.                                     <div class="col-12 col-sm-3 no-padding-x br_gris  lh13 order-sm-3">
  488.                                         <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 }}">
  489.                                             {% set p = "" %}
  490.                                             {% if ( nb_acheteurs_potentiels > 1 ) %}
  491.                                                 {% set p = "p" %}
  492.                                             {% endif %}
  493.                                             <span class="fs2">{{ nb_acheteurs_potentiels }}</span><br><span class="fs12">{{ translate("$$acheteur<br>potentiel$${p|acheteurs<br>potentiels}",lang,"","m", p) | raw }}</span>
  494.                                         </a>
  495.                                     </div>
  496.                                     <div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-4">
  497.                                         <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 }}">
  498.                                             {% set p = "" %}
  499.                                             {% if ( nb_investisseurs_acquereurs > 1 ) %}
  500.                                                 {% set p = "p" %}
  501.                                             {% endif %}
  502.                                             <span class="fs2">{{ nb_investisseurs_acquereurs }}</span><br><span class="fs12">{{ translate("$$fonds<br>acquereur$${p|fonds<br>acquereurs}",lang,"","m", p) | raw }}</span>
  503.                                         </a>
  504.                                     </div>
  505.                                 </div>
  506.                             </nav>
  507.                         </div>
  508.                     </div>
  509.                     <!--TOUT SAUF MOBILE-->
  510.                 {% elseif idSecteurActivite and not idLocalisation %}
  511.                     <div class="row" >
  512.                         <div class="col-12 mb-3 ml-3">
  513.                             {% set p = "" %}
  514.                             {% if ( nb_annonces > 1 ) %}
  515.                                 {% set p = "p" %}
  516.                             {% endif %}
  517.                             {% set arrayVarsTrans =  {"nomPourTitle": secteurActivites|last.nomPourTitle|lower }  %}
  518.                             <span class="fs13 vert">{{ nb_annonces }} {{ translate("$$acheteur$${p|acheteurs} dont",lang,"","m", p) | raw }} :</span>
  519.                         </div>
  520.                     </div>
  521.                     <!--MOBILE-->
  522.                     <div class="row d-block d-sm-none bkg_gris_clair">
  523.                         <div class="col-12">
  524.                             <div class="row">
  525.                                 <div class="col-6  text-center my-3 br_gris">
  526.                                     <div class="blanc lh099 py-3">
  527.                                         <a href="{{ path('vendre_entreprise_annonces_acquisition_secteur_activite',{'slug': slug, 'idSecteurActivite' : idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="vert lh099 py-3">
  528.                                             <span class="fs2">{{ nb_annonces_acquisition }}</span><br>
  529.                                             {% set p = "" %}
  530.                                             {% if ( nb_annonces_acquisition > 1 ) %}
  531.                                                 {% set p = "p" %}
  532.                                             {% endif %}
  533.                                             <span class="res_font">{{ translate("$$annonce$${p|annonces}<br>d'acquisition",lang,"","m", p) | raw }}</span>
  534.                                         </a>
  535.                                     </div>
  536.                                 </div>
  537.                                 <div class="col-6 text-center my-3">
  538.                                     <div class="blanc bkg_vert lh099 py-3">
  539.                                         <span class="fs2">{{ nb_cvs }}</span><br>
  540.                                         {% set p = "" %}
  541.                                         {% if ( nb_cvs > 1 ) %}
  542.                                             {% set p = "p" %}
  543.                                         {% endif %}
  544.                                         <span class="res_font">{{ translate("CV de <br>$$repreneur$${p|repreneurs}",lang,"","M", p) | raw }}</span>
  545.                                     </div>
  546.                                 </div>
  547.                                 <div class="col-6 text-center my-3 br_gris">
  548.                                     <div class="blanc lh099 py-3">
  549.                                         <a href="{{ path('vendre_entreprise_acquereur_historique_secteur_activite',{'slug': slug, 'idSecteurActivite' : idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="vert lh099 py-3">
  550.                                             <span class="fs2">{{ nb_acheteurs_potentiels }}</span><br>
  551.                                             {% set p = "" %}
  552.                                             {% if ( nb_acheteurs_potentiels > 1 ) %}
  553.                                                 {% set p = "p" %}
  554.                                             {% endif %}
  555.                                             <span class="res_font">{{ translate("$$acheteur<br>potentiel$${p|acheteurs<br>potentiels}",lang,"","m", p) | raw }}</span></a>
  556.                                     </div>
  557.                                 </div>
  558.                                 <div class="col-6 text-center my-3 pr-4">
  559.                                     <div class="blanc lh099 py-3">
  560.                                         <a href="{{ path('vendre_entreprise_fonds_acquereur_secteur_activite',{'slug': slug, 'idSecteurActivite' : idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="vert lh099 py-3">
  561.                                             <span class="fs2">{{ nb_investisseurs_acquereurs }}</span><br>
  562.                                             {% set p = "" %}
  563.                                             {% if ( nb_investisseurs_acquereurs > 1 ) %}
  564.                                                 {% set p = "p" %}
  565.                                             {% endif %}
  566.                                             <span class="res_font">{{ translate("$$fonds<br>acquereur$${p|fonds<br>acquereurs}",lang,"","m", p) | raw }}</span></a>
  567.                                     </div>
  568.                                 </div>
  569.                             </div>
  570.                         </div>
  571.                     </div>
  572.                     <!--MOBILE-->
  573.                     <!--TOUT SAUF MOBILE-->
  574.                     <div class="row d-none d-sm-block">
  575.                         <div class="onglet5 col-12 mb-4">
  576.                             <nav>
  577.                                 <div class="nav nav-tabs nav-fill" id="nav-tab" role="tablist">
  578.                                     <div class="col-12 col-sm-3 no-padding-x bl_gris lh13 order-4 order-sm-1">
  579.                                         <a class="nav-item nav-link" href="{{ path('vendre_entreprise_annonces_acquisition_secteur_activite',{'slug': slug, 'idSecteurActivite' : idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
  580.                                             {% set p = "" %}
  581.                                             {% if ( nb_annonces_acquisition > 1 ) %}
  582.                                                 {% set p = "p" %}
  583.                                             {% endif %}
  584.                                             <span class="fs2">{{ nb_annonces_acquisition }}</span><br><span class="fs12">{{ translate("$$annonce$${p|annonces}<br>d'acquisition",lang,"","m", p) | raw }}</span>
  585.                                         </a>
  586.                                     </div>
  587.                                     <div class="col-12 col-sm-3 no-padding-x br_gris  lh13 order-sm-2">
  588.                                         <div class="nav-item nav-link active">
  589.                                             {% set p = "" %}
  590.                                             {% if ( nb_cvs > 1 ) %}
  591.                                                 {% set p = "p" %}
  592.                                             {% endif %}
  593.                                             <span class="fs2">{{ nb_cvs }}</span><br><span class="fs12">{{ translate("CV de <br>$$repreneur$${p|repreneurs}",lang,"","M", p) | raw }}</span>
  594.                                         </div>
  595.                                     </div>
  596.                                     <div class="col-12 col-sm-3 no-padding-x br_gris  lh13 order-sm-3">
  597.                                         <a class="nav-item nav-link" href="{{ path('vendre_entreprise_acquereur_historique_secteur_activite',{'slug': slug, 'idSecteurActivite' : idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
  598.                                             {% set p = "" %}
  599.                                             {% if ( nb_acheteurs_potentiels > 1 ) %}
  600.                                                 {% set p = "p" %}
  601.                                             {% endif %}
  602.                                             <span class="fs2">{{ nb_acheteurs_potentiels }}</span><br><span class="fs12">{{ translate("$$acheteur<br>potentiel$${p|acheteurs<br>potentiels}",lang,"","m", p) | raw }}</span>
  603.                                         </a>
  604.                                     </div>
  605.                                     <div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-4">
  606.                                         <a class="nav-item nav-link" href="{{ path('vendre_entreprise_fonds_acquereur_secteur_activite',{'slug': slug, 'idSecteurActivite' : idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
  607.                                             {% set p = "" %}
  608.                                             {% if ( nb_investisseurs_acquereurs > 1 ) %}
  609.                                                 {% set p = "p" %}
  610.                                             {% endif %}
  611.                                             <span class="fs2">{{ nb_investisseurs_acquereurs }}</span><br><span class="fs12">{{ translate("$$fonds<br>acquereur$${p|fonds<br>acquereurs}",lang,"","m", p) | raw }}</span>
  612.                                         </a>
  613.                                     </div>
  614.                                 </div>
  615.                             </nav>
  616.                         </div>
  617.                     </div>
  618.                     <!--TOUT SAUF MOBILE-->
  619.                 {% elseif idLocalisation and idSecteurActivite %}
  620.                     <div class="row" >
  621.                         <div class="col-12 mb-3 ml-3">
  622.                             {% set p = "" %}
  623.                             {% if ( nb_annonces > 1 ) %}
  624.                                 {% set p = "p" %}
  625.                             {% endif %}
  626.                             {% set arrayVarsTrans =  {"prefixe": localisations|last.prefixe, "nom_localisation" : localisations|last.nom_localisation, "nomPourTitle": secteurActivites|last.nomPourTitle|lower }  %}
  627.                             <span class="fs13 vert">{{ nb_annonces }} {{ translate("$$acheteur$${p|acheteurs} dont",lang,"","m", p) | raw }} :</span>
  628.                         </div>
  629.                     </div>
  630.                     <!--MOBILE-->
  631.                     <div class="row d-block d-sm-none bkg_gris_clair">
  632.                         <div class="col-12">
  633.                             <div class="row">
  634.                                 <div class="col-6  text-center my-3 br_gris">
  635.                                     <div class="blanc lh099 py-3">
  636.                                         <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">
  637.                                             <span class="fs2">{{ nb_annonces_acquisition }}</span><br>
  638.                                             {% set p = "" %}
  639.                                             {% if ( nb_annonces_acquisition > 1 ) %}
  640.                                                 {% set p = "p" %}
  641.                                             {% endif %}
  642.                                             <span class="res_font">{{ translate("$$annonce$${p|annonces}<br>d'acquisition",lang,"","m", p) | raw }}</span>
  643.                                         </a>
  644.                                     </div>
  645.                                 </div>
  646.                                 <div class="col-6 text-center my-3">
  647.                                     <div class="blanc bkg_vert lh099 py-3">
  648.                                         <span class="fs2">{{ nb_cvs }}</span><br>
  649.                                         {% set p = "" %}
  650.                                         {% if ( nb_cvs > 1 ) %}
  651.                                             {% set p = "p" %}
  652.                                         {% endif %}
  653.                                         <span class="res_font">{{ translate("CV de <br>$$repreneur$${p|repreneurs}",lang,"","M", p) | raw }}</span>
  654.                                     </div>
  655.                                 </div>
  656.                                 <div class="col-6 text-center my-3 br_gris">
  657.                                     <div class="blanc lh099 py-3">
  658.                                         <a href="{{ path('vendre_entreprise_acquereur_historique_croise',{'nomLocalisation': localisations|last.nom_localisation|slugify, 'nomSecteurActivite' : secteurActivites|last.nomSecteurActivite|slugify, 'type': type, 'idLocalisation': localisations|last.id_localisation, 'idSecteurActivite' : secteurActivites|last.idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="vert lh099 py-3">
  659.                                             <span class="fs2">{{ nb_acheteurs_potentiels }}</span><br>
  660.                                             {% set p = "" %}
  661.                                             {% if ( nb_acheteurs_potentiels > 1 ) %}
  662.                                                 {% set p = "p" %}
  663.                                             {% endif %}
  664.                                             <span class="res_font">{{ translate("$$acheteur<br>potentiel$${p|acheteurs<br>potentiels}",lang,"","m", p) | raw }}</span></a>
  665.                                     </div>
  666.                                 </div>
  667.                                 <div class="col-6 text-center my-3 pr-4">
  668.                                     <div class="blanc lh099 py-3">
  669.                                         <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">
  670.                                             <span class="fs2">{{ nb_investisseurs_acquereurs }}</span><br>
  671.                                             {% set p = "" %}
  672.                                             {% if ( nb_investisseurs_acquereurs > 1 ) %}
  673.                                                 {% set p = "p" %}
  674.                                             {% endif %}
  675.                                             <span class="res_font">{{ translate("$$fonds<br>acquereur$${p|fonds<br>acquereurs}",lang,"","m", p) | raw }}</span></a>
  676.                                     </div>
  677.                                 </div>
  678.                             </div>
  679.                         </div>
  680.                     </div>
  681.                     <!--MOBILE-->
  682.                     <!--TOUT SAUF MOBILE-->
  683.                     <div class="row d-none d-sm-block">
  684.                         <div class="onglet5 col-12 mb-4">
  685.                             <nav>
  686.                                 <div class="nav nav-tabs nav-fill" id="nav-tab" role="tablist">
  687.                                     <div class="col-12 col-sm-3 no-padding-x bl_gris lh13 order-4 order-sm-1">
  688.                                         <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 }}">
  689.                                             {% set p = "" %}
  690.                                             {% if ( nb_annonces_acquisition > 1 ) %}
  691.                                                 {% set p = "p" %}
  692.                                             {% endif %}
  693.                                             <span class="fs2">{{ nb_annonces_acquisition }}</span><br><span class="fs12">{{ translate("$$annonce$${p|annonces}<br>d'acquisition",lang,"","m", p) | raw }}</span>
  694.                                         </a>
  695.                                     </div>
  696.                                     <div class="col-12 col-sm-3 no-padding-x br_gris  lh13 order-sm-2">
  697.                                         <div class="nav-item nav-link active">
  698.                                             {% set p = "" %}
  699.                                             {% if ( nb_cvs > 1 ) %}
  700.                                                 {% set p = "p" %}
  701.                                             {% endif %}
  702.                                             <span class="fs2">{{ nb_cvs }}</span><br><span class="fs12">{{ translate("CV de <br>$$repreneur$${p|repreneurs}",lang,"","M", p) | raw }}</span>
  703.                                         </div>
  704.                                     </div>
  705.                                     <div class="col-12 col-sm-3 no-padding-x br_gris  lh13 order-sm-3">
  706.                                         <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 }}">
  707.                                             {% set p = "" %}
  708.                                             {% if ( nb_acheteurs_potentiels > 1 ) %}
  709.                                                 {% set p = "p" %}
  710.                                             {% endif %}
  711.                                             <span class="fs2">{{ nb_acheteurs_potentiels }}</span><br><span class="fs12">{{ translate("$$acheteur<br>potentiel$${p|acheteurs<br>potentiels}",lang,"","m", p) | raw }}</span>
  712.                                         </a>
  713.                                     </div>
  714.                                     <div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-4">
  715.                                         <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 }}">
  716.                                             {% set p = "" %}
  717.                                             {% if ( nb_investisseurs_acquereurs > 1 ) %}
  718.                                                 {% set p = "p" %}
  719.                                             {% endif %}
  720.                                             <span class="fs2">{{ nb_investisseurs_acquereurs }}</span><br><span class="fs12">{{ translate("$$fonds<br>acquereur$${p|fonds<br>acquereurs}",lang,"","m", p) | raw }}</span>
  721.                                         </a>
  722.                                     </div>
  723.                                 </div>
  724.                             </nav>
  725.                         </div>
  726.                     </div>
  727.                     <!--TOUT SAUF MOBILE-->
  728.                 {% else %}
  729.                     <div class="row" >
  730.                         <div class="col-12 mb-3 ml-3">
  731.                             {% set p = "" %}
  732.                             {% if ( nb_annonces > 1 ) %}
  733.                                 {% set p = "p" %}
  734.                             {% endif %}
  735.                             <span class="fs13 vert">{{ nb_annonces }} {{ translate("$$acheteur$${p|acheteurs} dont",lang,"","m", p) | raw }} :</span>
  736.                         </div>
  737.                     </div>
  738.                     <!--MOBILE-->
  739.                     <div class="row d-block d-sm-none bkg_gris_clair">
  740.                         <div class="col-12">
  741.                             <div class="row">
  742.                                 <div class="col-6  text-center my-3 bl_gris">
  743.                                     <div class="blanc lh099 py-3">
  744.                                         <a href="{{ path('vendre_entreprise_resultats_annonces_acquisition',{'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="vert lh099 py-3">
  745.                                             <span class="fs2">{{ nb_annonces_acquisition }}</span><br>
  746.                                             {% set p = "" %}
  747.                                             {% if ( nb_annonces_acquisition > 1 ) %}
  748.                                                 {% set p = "p" %}
  749.                                             {% endif %}
  750.                                             <span class="res_font">{{ translate("$$annonce$${p|annonces}<br>d'acquisition",lang,"","m", p) | raw }}</span>
  751.                                         </a>
  752.                                     </div>
  753.                                 </div>
  754.                                 <div class="col-6 text-center my-3">
  755.                                     <div class="blanc bkg_vert lh099 py-3">
  756.                                         <span class="fs2">{{ nb_cvs }}</span><br>
  757.                                         {% set p = "" %}
  758.                                         {% if ( nb_cvs > 1 ) %}
  759.                                             {% set p = "p" %}
  760.                                         {% endif %}
  761.                                         <span class="res_font">{{ translate("CV de <br>$$repreneur$${p|repreneurs}",lang,"","M", p) | raw }}</span>
  762.                                     </div>
  763.                                 </div>
  764.                                 <div class="col-6 text-center my-3 br_gris">
  765.                                     <div class="blanc lh099 py-3">
  766.                                         <a href="{{ path('vendre_entreprise_resultats_acquereur_historique',{'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="vert lh099 py-3">
  767.                                             <span class="fs2">{{ nb_acheteurs_potentiels }}</span><br>
  768.                                             {% set p = "" %}
  769.                                             {% if ( nb_acheteurs_potentiels > 1 ) %}
  770.                                                 {% set p = "p" %}
  771.                                             {% endif %}
  772.                                             <span class="res_font">{{ translate("$$acheteur<br>potentiel$${p|acheteurs<br>potentiels}",lang,"","m", p) | raw }}</span></a>
  773.                                     </div>
  774.                                 </div>
  775.                                 <div class="col-6 text-center my-3 pr-4">
  776.                                     <div class="blanc lh099 py-3">
  777.                                         <a href="{{ path('vendre_entreprise_resultats_fonds_acquereur',{'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="vert lh099 py-3">
  778.                                             <span class="fs2">{{ nb_investisseurs_acquereurs }}</span><br>
  779.                                             {% set p = "" %}
  780.                                             {% if ( nb_investisseurs_acquereurs > 1 ) %}
  781.                                                 {% set p = "p" %}
  782.                                             {% endif %}
  783.                                             <span class="res_font">{{ translate("$$fonds<br>acquereur$${p|fonds<br>acquereurs}",lang,"","m", p) | raw }}</span>
  784.                                         </a>
  785.                                     </div>
  786.                                 </div>
  787.                             </div>
  788.                         </div>
  789.                     </div>
  790.                     <!--MOBILE-->
  791.                     <!--TOUT SAUF MOBILE-->
  792.                     <div class="row d-none d-sm-block">
  793.                         <div class="onglet5 col-12 mb-4">
  794.                             <nav>
  795.                                 <div class="nav nav-tabs nav-fill" id="nav-tab" role="tablist">
  796.                                     <div class="col-12 col-sm-3 no-padding-x bl_gris lh13 order-4 order-sm-1">
  797.                                         <a class="nav-item nav-link" href="{{ path('vendre_entreprise_resultats_annonces_acquisition',{'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
  798.                                             {% set p = "" %}
  799.                                             {% if ( nb_annonces_acquisition > 1 ) %}
  800.                                                 {% set p = "p" %}
  801.                                             {% endif %}
  802.                                             <span class="fs2">{{ nb_annonces_acquisition }}</span><br><span class="fs12">{{ translate("$$annonce$${p|annonces}<br>d'acquisition",lang,"","m", p) | raw }}</span>
  803.                                         </a>
  804.                                     </div>
  805.                                     <div class="col-12 col-sm-3 no-padding-x br_gris  lh13 order-sm-2">
  806.                                         <div class="nav-item nav-link active">
  807.                                             {% set p = "" %}
  808.                                             {% if ( nb_cvs > 1 ) %}
  809.                                                 {% set p = "p" %}
  810.                                             {% endif %}
  811.                                             <span class="fs2">{{ nb_cvs }}</span><br><span class="fs12">{{ translate("CV de <br>$$repreneur$${p|repreneurs}",lang,"","M", p) | raw }}</span>
  812.                                         </div>
  813.                                     </div>
  814.                                     <div class="col-12 col-sm-3 no-padding-x br_gris  lh13 order-sm-3">
  815.                                         <a class="nav-item nav-link" href="{{ path('vendre_entreprise_resultats_acquereur_historique',{'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
  816.                                             {% set p = "" %}
  817.                                             {% if ( nb_acheteurs_potentiels > 1 ) %}
  818.                                                 {% set p = "p" %}
  819.                                             {% endif %}
  820.                                             <span class="fs2">{{ nb_acheteurs_potentiels }}</span><br><span class="fs12">{{ translate("$$acheteur<br>potentiel$${p|acheteurs<br>potentiels}",lang,"","m", p) | raw }}</span>
  821.                                         </a>
  822.                                     </div>
  823.                                     <div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-4">
  824.                                         <a class="nav-item nav-link" href="{{ path('vendre_entreprise_resultats_fonds_acquereur',{'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
  825.                                             {% set p = "" %}
  826.                                             {% if ( nb_investisseurs_acquereurs > 1 ) %}
  827.                                                 {% set p = "p" %}
  828.                                             {% endif %}
  829.                                             <span class="fs2">{{ nb_investisseurs_acquereurs }}</span><br><span class="fs12">{{ translate("$$fonds<br>acquereur$${p|fonds<br>acquereurs}",lang,"","m", p) | raw }}</span>
  830.                                         </a>
  831.                                     </div>
  832.                                 </div>
  833.                             </nav>
  834.                         </div>
  835.                     </div>
  836.                     <!--TOUT SAUF MOBILE-->
  837.                 {% endif %}
  838.                 <div class="row mt-5" >
  839.                     <div class="col-12 mb-1 ml-3 mt-3">
  840.                         {% set p = "" %}
  841.                         {% if ( nb_cvs > 1 ) %}
  842.                             {% set p = "p" %}
  843.                         {% endif %}
  844.                         <span class="fs18">{{ nb_cvs }} {{ translate("CV de $$repreneur$${p|repreneurs}",lang,"","M", p) | raw }}</span>
  845.                     </div>
  846.                 </div>
  847.                 <!--PAGINATION-->
  848.                 <div class="row mt-3">
  849.                     <div class="col-sm-12">
  850.                         <nav aria-label="..." class="pagination-vert">
  851.                             {{ knp_pagination_render(liste_cvs) }}
  852.                         </nav>
  853.                     </div>
  854.                 </div>
  855.                 <!--FIN PAGINATION-->
  856.                 <div class="row" >
  857.                     <div class="col-12 col-md-5 offset-md-7 col-lg-3 offset-lg-9 text-right mb-2">
  858.                         <select class="form-control" id="idFromControlSelectTri" v-on:change="sortBy($event)">
  859.                             {% if is_recherche_by_localisation %}
  860.                                 <option value="pertinence" {% if tri == "pertinence" or tri_default == 'pertinence' %}selected="selected"{% endif %}>{{ translate("pertinence",lang,"","M") | raw }}</option>
  861.                             {% endif %}
  862.                             <option value="date_desc" {% if tri == "date_desc" or tri_default == 'date_desc' %}selected="selected"{% endif %}>{{ translate("CV les plus recents",lang,"","M") | raw }}</option>
  863.                             <option value="ca_desc" {% if tri == "ca_desc" %}selected="selected"{% endif %} >{{ translate("apport décroissant",lang,"","M") | raw }}</option>
  864.                             <option value="ca_asc" {% if tri == "ca_asc" %}selected="selected"{% endif %}>{{ translate("apport croissant",lang,"","M") | raw }}</option>
  865.                         </select>
  866.                     </div>
  867.                 </div>
  868.                 <div class="row" >
  869.                     <div class="col-12">
  870.                         <!--ANNONCES -->
  871.                         {% for index, cv in liste_cvs %}
  872.                             {% set  lienRepreneurCvDetails = path('repreneur_cv_detail',
  873.                     {
  874.                         'idRepreneur':cv.idRepreneur,
  875.                         'titreslug':cv.titreSocieteRecherchee| slugify ,
  876.                         'codePays':codePaysWithUnderScore
  877.                     }) ~ '?from=vendre-entreprise&urlList='~ urlList ~ '&' ~ string_params ~ '&index=' ~ index
  878.                             %}
  879.                             <div class="card mb-3 card-ie filet_gris">
  880.                                 <div class="card-body">
  881.                                     <div class="row">
  882.                                         <div class="col-12 col-md-8 col-lg-9 col-xl-10">
  883.                                             <div class="mb-2">
  884.                                                 <h5 class="titre_annonce_vert">
  885.                                                     <a href="{{ lienRepreneurCvDetails }}" title="{{ cv.titreSocieteRecherchee }}">
  886.                                                         {{ cv.titreSocieteRecherchee }}
  887.                                                     </a>
  888.                                                 </h5>
  889.                                                 {% if cv.etat is defined and (cv.etat == "information_transmise" or cv.etat == "facture_envoyee") %}
  890.                                                     <span class="orange font_600"><i class="fa-solid fa-circle-check"></i>&nbsp;&nbsp;{{ translate("déjà commandé",lang,"","M") | raw }}</span>
  891.                                                 {% endif %}
  892.                                             </div>
  893.                                             <div class="mb-1">
  894.                                                 {{ translate("recherche par" ,lang,"","M") | raw }} :
  895.                                                 <span class="nowrap_custom">
  896.                                                     <strong> {{ cv.titreProfil }}</strong>
  897.                                                 </span>
  898.                                                 <br>
  899.                                                 <span class="nowrap_custom">
  900.                                                     {{ translate("n° du profil" ,lang,"","M") | raw }}  :
  901.                                                     <strong>{{ cv.idRepreneur }}</strong>
  902.                                                 </span>&nbsp;&nbsp;&nbsp;
  903.                                                 <span class="nowrap_custom">
  904.                                                     {{ translate("age" ,lang,"","M") | raw }}  : <strong>{{ cv.age }} {{ translate("ans",lang,"","M", p) | raw }}</strong>
  905.                                                 </span>&nbsp;&nbsp;&nbsp;
  906.                                                 <span class="nowrap_custom">
  907.                                                     {{ translate("apport" ,lang,"","M") | raw }}  : <strong>{{ cv.montantApport }} k€</strong>
  908.                                                 </span>&nbsp;&nbsp;&nbsp;
  909.                                                 <i class="fas fa-map-marker-alt"></i>&nbsp;
  910.                                                 {{ cv.ville }}
  911.                                             </div>
  912.                                         </div>
  913.                                         <div class="col-12 col-md-4 col-lg-3 col-xl-2" id="cartes">
  914.                                             <div class="row">
  915.                                                 <div class="col-4 col-md-12 text-center">
  916.                                                     <a href="{{ lienRepreneurCvDetails }}">
  917.                                                         {% if  cv.cartes.id_localisation_by_country|length == 1 %}
  918.                                                             {% if cv.cartes.id_localisation_by_country|keys |first == "33" %}
  919.                                                                 <img class="img-fluid"
  920.                                                                      id='absolute_index_1'
  921.                                                                      src="{{ CDN.CDN_FUSACQ }}/static/help-fusacq/fr/images/cartes/fond/33/33_fond_monde.png"
  922.                                                                      alt="France">
  923.                                                                 {% for k, carte  in cv.cartes.id_localisation_by_country.33 %}
  924.                                                                     <img class="img-fluid"
  925.                                                                          id='absolute_index_2'
  926.                                                                          src="{{ CDN.CDN_FUSACQ }}/static/help-fusacq/fr/images/cartes/fond/33/{{ carte }}.png"
  927.                                                                          alt="France">
  928.                                                                 {% endfor %}
  929.                                                             {% endif %}
  930.                                                             {% if cv.cartes.id_localisation_by_country|keys |first == "41" %}
  931.                                                                 {% if cv.cartes.id_localisation_by_country.41 |length == 1 %}
  932.                                                                     <img class="img-fluid"
  933.                                                                          id='absolute_index_2'
  934.                                                                          src="{{ CDN.CDN_FUSACQ }}/static/help-fusacq/fr/images/cartes/pays/41/{{ cv.cartes.id_localisation_by_country.41|first }}.png"
  935.                                                                          alt="Suisse">
  936.                                                                 {% else %}
  937.                                                                     <img class="img-fluid"
  938.                                                                          id='absolute_index_2'
  939.                                                                          src="{{ CDN.CDN_FUSACQ }}/static/help-fusacq/fr/images/cartes/pays/41/41_transparent.png"
  940.                                                                          alt="Suisse">
  941.                                                                 {% endif %}
  942.                                                             {% endif %}
  943.                                                             {% if cv.cartes.id_localisation_by_country|keys |first == "01" %}
  944.                                                                 {% if cv.cartes.id_localisation_by_country['01'] |length == 1 %}
  945.                                                                     <img class="img-fluid"
  946.                                                                          id='absolute_index_2'
  947.                                                                          src="{{ CDN.CDN_FUSACQ }}/static/help-fusacq/fr/images/cartes/pays/01/{{ cv.cartes.id_localisation_by_country['01']|first }}.png"
  948.                                                                          alt="Canada">
  949.                                                                 {% else %}
  950.                                                                     <img class="img-fluid"
  951.                                                                          id='absolute_index_2'
  952.                                                                          src="{{ CDN.CDN_FUSACQ }}/static/help-fusacq/fr/images/cartes/pays/01/01_transparent.png"
  953.                                                                          alt="Canada">
  954.                                                                 {% endif %}
  955.                                                             {% endif %}
  956.                                                             {% if cv.cartes.id_localisation_by_country|keys |first == "32" %}
  957.                                                                 {% if cv.cartes.id_localisation_by_country.32 |length == 1 %}
  958.                                                                     <img class="img-fluid"
  959.                                                                          id='absolute_index_2'
  960.                                                                          src="{{ CDN.CDN_FUSACQ }}/static/help-fusacq/fr/images/cartes/pays/32/{{ cv.cartes.id_localisation_by_country.32|first }}.png"
  961.                                                                          alt="Belgique">
  962.                                                                 {% else %}
  963.                                                                     <img class="img-fluid"
  964.                                                                          id='absolute_index_2'
  965.                                                                          src="{{ CDN.CDN_FUSACQ }}/static/help-fusacq/fr/images/cartes/pays/32/32_transparent.png"
  966.                                                                          alt="Belgique">
  967.                                                                 {% endif %}
  968.                                                             {% endif %}
  969.                                                         {% endif %}
  970.                                                         {% if  cv.cartes.id_localisation_by_country|length  > 1 %}
  971.                                                             {% if 33 in cv.cartes.id_localisation_by_country|keys %}
  972.                                                                 <img class="img-fluid"
  973.                                                                      id='absolute_index_1'
  974.                                                                      src="{{ CDN.CDN_FUSACQ }}/static/help-fusacq/fr/images/cartes/fond/33/33_fond_monde.png"
  975.                                                                      alt="France">
  976.                                                                 {% for k, carte  in cv.cartes.id_localisation_by_country.33 %}
  977.                                                                     <img class="img-fluid"
  978.                                                                          id='absolute_index_2'
  979.                                                                          src="{{ CDN.CDN_FUSACQ }}/static/help-fusacq/fr/images/cartes/fond/33/{{ carte }}.png"
  980.                                                                          alt="France">
  981.                                                                 {% endfor %}
  982.                                                                 <img class="img-fluid"
  983.                                                                      id='absolute_index_2'
  984.                                                                      src="{{ CDN.CDN_FUSACQ }}/static/help-fusacq/fr/images/cartes/fond/33/monde.png"
  985.                                                                      alt="Monde">
  986.                                                             {% endif %}
  987.                                                             {% if 33 not in cv.cartes.id_localisation_by_country|keys %}
  988.                                                                 <img class="img-fluid"
  989.                                                                      id='absolute_index_2'
  990.                                                                      src="{{ CDN.CDN_FUSACQ }}/static/help-fusacq/fr/images/cartes/pays/monde_transparent.png"
  991.                                                                      alt="Monde">
  992.                                                             {% endif %}
  993.                                                         {% endif %}
  994.                                                     </a>
  995.                                                 </div>
  996.                                             </div>
  997.                                         </div>
  998.                                         <div class="col-4 col-md-4 col-lg-4 mt-2">
  999.                                             <a href="{{ lienRepreneurCvDetails }}" title="{{ translate("voir les details" ,lang,"","M") | raw }}">
  1000.                                                 <button type="button" class="btn btn-vert-annonce">
  1001.                                                     {{ translate("voir les details" ,lang,"","M") | raw }}
  1002.                                                 </button>
  1003.                                             </a>
  1004.                                         </div>
  1005.                                     </div>
  1006.                                 </div>
  1007.                             </div>
  1008.                         {% endfor %}
  1009.                         <!--FIN ANNONCES -->
  1010.                         <!--PUB FRANCHISE-->
  1011.                         <!--<div class="card mb-3 card-ie card-franchises filet_gris">
  1012.                                 <div class="card-header">Avez-vous pense a creer ou reprendre en franchise ?</div>
  1013.                                 <div class="card-body">
  1014.                             <div class="row">
  1015.                                         <div class="col-6 col-md-3">
  1016.                                                 <a href="https://www.placedesfranchises.com/carslift" target="_blank" title="Carslift"><img class="img-fluid" src="https://static.placedesfranchises.com/images/uploads/5ede3ed64cf8e/logo_carslift.jpg"  alt="Carslift" ></a>
  1017.                                         </div>
  1018.                                         <div class="col-6 col-md-7">
  1019.                                                 <div>
  1020.                                                         <a href="https://www.placedesfranchises.com/carslift" class="inter_orange_link" title="Carslift">CARSLIFT</a><br>
  1021.                                                         <a href="https://www.placedesfranchises.com/carslift" class="vert_franchises" title="Le specialiste du bien motorise">Le specialiste du bien motorise</a><br>
  1022.                                                         <span class="nowrap_custom">Apport : <strong>15 000 € </strong></span>&nbsp;&nbsp;&nbsp;&nbsp;
  1023.                                                         <span class="nowrap_custom">Droit d'entree :  <strong>35 000 €</strong>
  1024.                                                 </div>
  1025.                                         </div>
  1026.                                         <div class="col-12 col-md-2 text-center">
  1027.                                                 <div class="pt-3 mt-2 inline"><small>Consultez sur </small></div>
  1028.                                                 <div class=" inline"><img src="https://static.placedesfranchises.com/img/logo_text.jpg" width="120"></div>
  1029.                                         </div>
  1030.                                 </div>
  1031.                                 </div>
  1032.                         </div>-->
  1033.                         <!--FIN PUB FRANCHISE-->
  1034.                         <!--PUB FRANCHISE-->
  1035.                         <!--<div class="card mb-3 card-ie card-franchises">
  1036.                             <div class="card-header">{{ translate("avez-vous pense a creer ou reprendre en franchise ?",lang,"","M") | raw }}</div>
  1037.                             <div class="card-body">
  1038.                                 <div class="row">
  1039.                                     <div class="col-12 col-md-6">
  1040.                                         <a href="https://www.placedesfranchises.com/carslift" class="inter_orange_link" title="OUEST CONTRÔLE ENVIRONNEMENT">OUEST CONTRÔLE ENVIRONNEMENT</a>
  1041.                                     </div>
  1042.                                     <div class="col-12 col-md-6">
  1043.                                         <div>
  1044.                                             <a href="https://www.placedesfranchises.com/carslift" class="vert_franchises fs13" title="Le specialiste du bien motorise">Le specialiste du bien motorise</a><br>
  1045.                                             <span class="nowrap_custom">{{ translate("apport",lang,"","M") | raw }} : <strong>15 000 € </strong></span>&nbsp;&nbsp;&nbsp;&nbsp;
  1046.                                             <span class="nowrap_custom">{{ translate("droit d'entree",lang,"","M") | raw }} :  <strong>35 000 €</strong>
  1047.                                         </div>
  1048.                                     </div>
  1049.                                     <div class="col-12 col-md-12 text-right mt-3">
  1050.                                         <div class="inline"><small>{{ translate("consultez sur",lang,"","M") | raw }} </small></div>
  1051.                                         <div class="inline"><img src="images/logo_PDF_petit.jpg" width="120"></div>
  1052.                                     </div>
  1053.                                 </div>
  1054.                             </div>
  1055.                         </div>-->
  1056.                         <!--FIN PUB FRANCHISE-->
  1057.                     </div>
  1058.                 </div>
  1059.                 <!--PAGINATION-->
  1060.                 <div class="row mt-3">
  1061.                     <div class="col-sm-12">
  1062.                         <nav aria-label="..." class="pagination-vert">
  1063.                             {{ knp_pagination_render(liste_cvs) }}
  1064.                         </nav>
  1065.                     </div>
  1066.                 </div>
  1067.                 <!--FIN PAGINATION-->
  1068.             </div><!--FIN COLONNE DROITE -->
  1069.         </div> <!--FIN ROW CONTAINER -->
  1070.     </div>  <!--FIN CONTAINER -->
  1071. {% endblock %}
  1072. {% block javascripts %}
  1073.     {{ parent() }}
  1074.     <script type="module" data-name="{{ codePaysWithUnderScore }}" id="codePaysParam" src="{{ asset('build/js/vendre_entreprise/acquereur_historique.js') }}"></script>
  1075. {% endblock %}