templates/ouvrir_capital/fonds_investissement.html.twig line 928

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block stylesheets %}  {{ parent() }}
  3. {% endblock %}
  4. {% block body %}
  5.     {% include 'assets/assets_vuejs.html.twig' %}
  6.     <!-- Menu  -->
  7.     {{ render_esi(controller(
  8.       'App\\Controller\\CoreController::menu',
  9.       {   "lang": lang,
  10.           "currentRoute":currentRoute,
  11.           "codePays": codePaysWithUnderScore }
  12.     )) | spaceless }}
  13.     <!-- Menu  -->
  14.     <!-- Publicite  -->
  15.     {% include 'includes/publicite.html.twig' %}
  16.     <!-- Publicite  -->
  17.     <div class="container" id="app">
  18.         <div class="row">
  19.             <!--COLONNE GAUCHE -->
  20.             {% include 'includes/colonnes_gauche_annonces.html.twig' %}
  21.             <!--FIN COLONNE GAUCHE -->
  22.             <!--COLONNE DROITE -->
  23.             <div class="col-12 col-lg-9 bkg_blanc">
  24.                 <!-- ARIANE -->
  25.                 <nav aria-label="breadcrumb" class="d-none d-sm-block">
  26.                     <ol class="breadcrumb">
  27.                         <li class="breadcrumb-item"><a href="{{ path('index',{'codePays':codePays}) }}">{{ translate("accueil",lang,"","M") | raw }}</a></li>
  28.                         <li class="breadcrumb-item"><a href="{{ path('ouvrir_capital_business_angel',{'codePays':codePaysWithUnderScore}) }}">{{ translate("ouvrir mon capital",lang,"","M") | raw }}</a></li>
  29.                             {% if idLocalisation and not idSecteurActivite %}
  30.                             <li class="breadcrumb-item"><a href="{{ path('ouvrir_capital_resultats_fonds_investissement', {'codePays' : codePaysWithUnderScore}) }}" title="{{ translate("fonds d'investissement",lang,"","M") | raw }}">{{ translate("fonds d'investissement",lang,"","M") | raw }}</a></li>
  31.                                 {% for index, localisation in localisations %}
  32.                                     {% if index == 0 %}
  33.                                         {% set type_loc = "p" %}
  34.                                     {% elseif index == 1 %}
  35.                                         {% set type_loc = "r" %}
  36.                                     {% else %}
  37.                                         {% set type_loc = "d" %}
  38.                                     {% endif %}
  39.                                 {% if localisation != localisations|last %}
  40.                                     {% set arrayVarsTrans =  {"prefixe": localisation.prefixe, "nom_localisation" : localisation.nom_localisation }  %}
  41.                                     <li class="breadcrumb-item">
  42.                                         <a href="{{ path('ouvrir_capital_fonds_investissement_localisation', {'slug': localisation.nom_localisation|slugify, 'type': type_loc, 'idLocalisation': localisation.id_localisation, 'codePays': codePaysWithUnderScore}) }}"
  43.                                            title="{{ translate("fonds d'investissement %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  44.                                             {{ localisation.nom_localisation }}
  45.                                         </a>
  46.                                     </li>
  47.                                 {% else %}
  48.                                     <li class="breadcrumb-item active" aria-current="page">{{ localisation.nom_localisation }}</li>
  49.                                     {% endif %}
  50.                                 {% endfor %}
  51.                             {% elseif idSecteurActivite and not idLocalisation %}
  52.                             <li class="breadcrumb-item"><a href="{{ path('ouvrir_capital_resultats_fonds_investissement', {'codePays' : codePaysWithUnderScore}) }}" title="{{ translate("fonds d'investissement",lang,"","M") | raw }}">{{ translate("fonds d'investissement",lang,"","M") | raw }}</a></li>
  53.                                 {% for index, secteurActivite in secteurActivites %}
  54.                                     {% if secteurActivite != secteurActivites|last %}
  55.                                         {% set arrayVarsTrans =  {"nomPourTitle": secteurActivite.nomPourTitle|lower }  %}
  56.                                     <li class="breadcrumb-item">
  57.                                         <a href="{{ path('ouvrir_capital_fonds_investissement_secteur_activite', {'slug': secteurActivite.nomSecteurActivite|slugify, 'idSecteurActivite': secteurActivite.idSecteurActivite, 'codePays': codePaysWithUnderScore}) }}"
  58.                                            title="{{ translate("fonds d'investissement %$nomPourTitle%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  59.                                             {{ secteurActivite.nomSecteurActivite }}
  60.                                         </a>
  61.                                     </li>
  62.                                 {% else %}
  63.                                     <li class="breadcrumb-item active" aria-current="page">{{ secteurActivite.nomSecteurActivite }}</li>
  64.                                     {% endif %}
  65.                                 {% endfor %}
  66.                             {% elseif idSecteurActivite and idLocalisation %}
  67.                             <li class="breadcrumb-item"><a href="{{ path('ouvrir_capital_resultats_fonds_investissement', {'codePays' : codePaysWithUnderScore}) }}" title="{{ translate("fonds d'investissement",lang,"","M") | raw }}">{{ translate("fonds d'investissement",lang,"","M") | raw }}</a></li>
  68.                                 {% for index, secteurActivite in secteurActivites %}
  69.                                     {% set arrayVarsTrans =  {"nomPourTitle": secteurActivite.nomPourTitle|lower }  %}
  70.                                 <li class="breadcrumb-item">
  71.                                     <a href="{{ path('ouvrir_capital_fonds_investissement_secteur_activite', {'slug': secteurActivite.nomSecteurActivite|slugify, 'idSecteurActivite': secteurActivite.idSecteurActivite, 'codePays': codePaysWithUnderScore}) }}"
  72.                                        title="{{ translate("fonds d'investissement %$nomPourTitle%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  73.                                         {{ secteurActivite.nomSecteurActivite }}
  74.                                     </a>
  75.                                 </li>
  76.                             {% endfor %}
  77.                             {% for index, localisation in localisations %}
  78.                                 {% if index == 0 %}
  79.                                     {% set type_loc = "p" %}
  80.                                 {% elseif index == 1 %}
  81.                                     {% set type_loc = "r" %}
  82.                                 {% else %}
  83.                                     {% set type_loc = "d" %}
  84.                                 {% endif %}
  85.                                 {% if localisation != localisations|last %}
  86.                                     {% set arrayVarsTrans =  {"prefixe": localisation.prefixe, "nom_localisation" : localisation.nom_localisation, "nomPourTitle": secteurActivites|last.nomPourTitle|lower }  %}
  87.                                     <li class="breadcrumb-item">
  88.                                         <a href="{{ path('ouvrir_capital_fonds_investissement_croise', {'nomLocalisation': localisation.nom_localisation|slugify, 'nomSecteurActivite': secteurActivites|last.nomSecteurActivite|slugify, 'type': type_loc, 'idLocalisation': localisation.id_localisation, 'idSecteurActivite': secteurActivites|last.idSecteurActivite, 'codePays': codePaysWithUnderScore}) }}"
  89.                                            title="{{ translate("fonds d'investissement %$nomPourTitle%$ %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  90.                                             {{ localisation.nom_localisation }}
  91.                                         </a>
  92.                                     </li>
  93.                                 {% else %}
  94.                                     <li class="breadcrumb-item active" aria-current="page">{{ localisation.nom_localisation }}</li>
  95.                                     {% endif %}
  96.                                 {% endfor %}
  97.                             {% else %}
  98.                             <li class="breadcrumb-item active" aria-current="page">{{ translate("fonds d'investissement",lang,"","M") | raw }}</li>
  99.                             {% endif %}
  100.                     </ol>
  101.                 </nav>
  102.                 <!-- FIN ARIANE -->
  103.                 {% if app.session.flashbag.peek('error')|length > 0 %}
  104.                     <div class="alert alert-danger" role="alert">
  105.                         {% for message in app.flashes('error') %}
  106.                             {{ message }}<br>
  107.                         {% endfor %}
  108.                     </div>
  109.                 {% endif %}
  110.                 {% if app.session.flashbag.peek('success')|length > 0 %}
  111.                     <div class="alert alert-success" role="alert">
  112.                         {% for message in app.flashes('success') %}
  113.                             - {{ message }}<br>
  114.                         {% endfor %}
  115.                     </div>
  116.                 {% endif %}
  117.                 {% if idLocalisation or idSecteurActivite %}
  118.                     <div class="row mt-4">
  119.                         <div class="col-12 mb-1 ml-3 mt-3">
  120.                             <h1 class="orange-new fs2">{{ translate("fonds d'investissement",lang,"","M") | raw }} -
  121.                                 {% if idLocalisation and not idSecteurActivite %}
  122.                                     {{ localisations|last.nom_localisation }} {% if noms_ville %}({{ noms_ville }}...){% endif %}
  123.                                 {% elseif idSecteurActivite and not idLocalisation %}
  124.                                     {{ secteurActivites|last.nomSecteurActivite }}
  125.                                 {% elseif idSecteurActivite and idLocalisation %}
  126.                                     {{ secteurActivites|last.nomSecteurActivite }} {{ localisations|last.prefixe }} {{ localisations|last.nom_localisation }}
  127.                                 {% endif %}
  128.                             </h1>
  129.                         </div>
  130.                     </div>
  131.                 {% endif %}
  132.                 {% if idLocalisation and not idSecteurActivite %}
  133.                     <div class="row">
  134.                         <div class="col-12">
  135.                             <div class="card no_shadow mb-3 card-ie">
  136.                                 <div class="card-body">
  137.                                     <div class="row">
  138.                                         <div class="col-12 mt-1">
  139.                                             <div class="float-left">
  140.                                                 {% if prev_localisation %}
  141.                                                     {% set arrayVarsTrans =  {"prefixe": prev_localisation.prefixe, "nom_localisation" : prev_localisation.nom_localisation }  %}
  142.                                                     <a href="{{ path('ouvrir_capital_fonds_investissement_localisation', {'slug': prev_localisation.nom_localisation|slugify, 'type': prev_localisation.type, 'idLocalisation': prev_localisation.id_localisation, 'codePays': codePaysWithUnderScore}) }}" title="{{ translate("fonds d'investissement %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  143.                                                         <i class="fas fa-arrow-circle-up fa-2x orange-new"></i>
  144.                                                     </a>
  145.                                                 {% else %}
  146.                                                     <i class="fas fa-arrow-circle-up fa-2x orange-new"></i>
  147.                                                 {% endif %}
  148.                                             </div>
  149.                                             <div class="lh18 ml-5">
  150.                                                 <strong class="orange-new">{{ localisations|last.nom_localisation }} ({{ nb_fonds_investissement }})</strong>
  151.                                             </div>
  152.                                         </div>
  153.                                         {% set nb_elements = sous_localisations_numbers | length %}
  154.                                         {% if nb_elements > 0 and nb_elements <= 5 %}
  155.                                             <div class="col-12 pt-2 mt-3">
  156.                                                 <ul class="cat_regions">
  157.                                                     {% for element in sous_localisations_numbers %}
  158.                                                         {% set arrayVarsTrans =  {"prefixe": element.prefixe, "nom_localisation" : element.nom_localisation }  %}
  159.                                                         <li>
  160.                                                             {% if element.nb_fonds_investissement > 0 %}
  161.                                                                 <a href="{{ path('ouvrir_capital_fonds_investissement_localisation', {'slug' : element.nom_localisation|slugify, 'idLocalisation' : element.id_localisation, 'type' : element.type, 'codePays' : codePaysWithUnderScore }) }}" title="{{ translate("fonds d'investissement %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  162.                                                                     {{ element.nom_localisation }} ({{ element.nb_fonds_investissement }})
  163.                                                                 </a>
  164.                                                             {% else %}
  165.                                                                 <span class="disabled-link">{{ element.nom_localisation }} ({{ element.nb_fonds_investissement }})</span>
  166.                                                             {% endif %}
  167.                                                         </li>
  168.                                                     {% endfor %}
  169.                                                 </ul>
  170.                                             </div>
  171.                                         {% elseif nb_elements > 5 %}
  172.                                             {% set half = ((sous_localisations_numbers | length) / 2)| round(0, 'ceil') %}
  173.                                             <div class="col-6 pt-2 mt-3">
  174.                                                 <ul class="cat_regions">
  175.                                                     {% for index, element in sous_localisations_numbers %}
  176.                                                         {% set arrayVarsTrans =  {"prefixe": element.prefixe, "nom_localisation" : element.nom_localisation }  %}
  177.                                                         {% if index < half %}
  178.                                                             <li>
  179.                                                                 {% if element.nb_fonds_investissement > 0 %}
  180.                                                                     <a href="{{ path('ouvrir_capital_fonds_investissement_localisation', {'slug' : element.nom_localisation|slugify, 'idLocalisation' : element.id_localisation, 'type' : element.type, 'codePays' : codePaysWithUnderScore }) }}" title="{{ translate("fonds d'investissement %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  181.                                                                         {{ element.nom_localisation }} ({{ element.nb_fonds_investissement }})
  182.                                                                     </a>
  183.                                                                 {% else %}
  184.                                                                     <span class="disabled-link">{{ element.nom_localisation }} ({{ element.nb_fonds_investissement }})</span>
  185.                                                                 {% endif %}
  186.                                                             </li>
  187.                                                         {% endif %}
  188.                                                     {% endfor %}
  189.                                                 </ul>
  190.                                             </div>
  191.                                             <div class="col-6 pt-2 mt-3">
  192.                                                 <ul class="cat_regions">
  193.                                                     {% for index, element in sous_localisations_numbers %}
  194.                                                         {% set arrayVarsTrans =  {"prefixe": element.prefixe, "nom_localisation" : element.nom_localisation }  %}
  195.                                                         {% if index >= half %}
  196.                                                             <li>
  197.                                                                 {% if element.nb_fonds_investissement > 0 %}
  198.                                                                     <a href="{{ path('ouvrir_capital_fonds_investissement_localisation', {'slug' : element.nom_localisation|slugify, 'idLocalisation' : element.id_localisation, 'type' : element.type, 'codePays' : codePaysWithUnderScore }) }}" title="{{ translate("fonds d'investissement %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  199.                                                                         {{ element.nom_localisation }} ({{ element.nb_fonds_investissement }})
  200.                                                                     </a>
  201.                                                                 {% else %}
  202.                                                                     <span class="disabled-link">{{ element.nom_localisation }} ({{ element.nb_fonds_investissement }})</span>
  203.                                                                 {% endif %}
  204.                                                             </li>
  205.                                                         {% endif %}
  206.                                                     {% endfor %}
  207.                                                 </ul>
  208.                                             </div>
  209.                                         {% endif %}
  210.                                     </div>
  211.                                 </div>
  212.                             </div>
  213.                         </div>
  214.                     </div>
  215.                 {% elseif idSecteurActivite and not idLocalisation %}
  216.                     <div class="row">
  217.                         <div class="col-12">
  218.                             <div class="card no_shadow mb-3 card-ie">
  219.                                 <div class="card-body">
  220.                                     <div class="row">
  221.                                         <div class="col-12 mt-1">
  222.                                             <div class="float-left">
  223.                                                 {% if prev_secteur %}
  224.                                                     {% set arrayVarsTrans =  {"nomPourTitle": prev_secteur.nomPourTitle|lower }  %}
  225.                                                     <a href="{{ path('ouvrir_capital_fonds_investissement_secteur_activite', {'slug': prev_secteur.nomSecteurActivite|slugify, 'idSecteurActivite': prev_secteur.idSecteurActivite, 'codePays': codePaysWithUnderScore}) }}" title="{{ translate("fonds d'investissement %$nomPourTitle%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  226.                                                         <i class="fas fa-arrow-circle-up fa-2x orange-new"></i>
  227.                                                     </a>
  228.                                                 {% else %}
  229.                                                     <a href="{{ path('ouvrir_capital_annonces_acquisition', {'codePays': codePaysWithUnderScore }) }}" title="{{ translate("toutes les opportunités", lang, "", "M") }}">
  230.                                                         <i class="fas fa-arrow-circle-up fa-2x orange-new"></i>
  231.                                                     </a>
  232.                                                 {% endif %}
  233.                                             </div>
  234.                                             <div class="lh18 ml-5">
  235.                                                 <strong class="orange-new">{{ secteurActivites|last.nomSecteurActivite }} ({{ nb_fonds_investissement }})</strong>
  236.                                             </div>
  237.                                         </div>
  238.                                         {% set nb_elements = sous_secteurs_numbers | length %}
  239.                                         {% if nb_elements > 0 and nb_elements <= 5 %}
  240.                                             <div class="col-12 pt-2 mt-3">
  241.                                                 <ul class="cat_regions">
  242.                                                     {% for element in sous_secteurs_numbers %}
  243.                                                         {% set arrayVarsTrans =  {"nomPourTitle": element.nomPourTitle|lower }  %}
  244.                                                         <li>
  245.                                                             {% if element.nb_fonds_investissement > 0 %}
  246.                                                                 <a href="{{ path('ouvrir_capital_fonds_investissement_secteur_activite', {'slug' : element.nomSecteurActivite|slugify, 'idSecteurActivite' : element.idSecteurActivite, 'codePays' : codePaysWithUnderScore }) }}"
  247.                                                                    title="{{ translate("fonds d'investissement %$nomPourTitle%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  248.                                                                     {{ element.nomSecteurActivite }} ({{ element.nb_fonds_investissement }})
  249.                                                                 </a>
  250.                                                             {% else %}
  251.                                                                 <span class="disabled-link">{{ element.nomSecteurActivite }} ({{ element.nb_fonds_investissement }})</span>
  252.                                                             {% endif %}
  253.                                                         </li>
  254.                                                     {% endfor %}
  255.                                                 </ul>
  256.                                             </div>
  257.                                         {% elseif nb_elements > 5 %}
  258.                                             {% set half = ((sous_secteurs_numbers | length) / 2)| round(0, 'ceil') %}
  259.                                             <div class="col-6 pt-2 mt-3">
  260.                                                 <ul class="cat_regions">
  261.                                                     {% for index, element in sous_secteurs_numbers %}
  262.                                                         {% set arrayVarsTrans =  {"nomPourTitle": element.nomPourTitle|lower }  %}
  263.                                                         {% if index < half %}
  264.                                                             <li>
  265.                                                                 {% if element.nb_fonds_investissement > 0 %}
  266.                                                                     <a href="{{ path('ouvrir_capital_fonds_investissement_secteur_activite', {'slug' : element.nomSecteurActivite|slugify, 'idSecteurActivite' : element.idSecteurActivite, 'codePays' : codePaysWithUnderScore }) }}"
  267.                                                                        title="{{ translate("fonds d'investissement %$nomPourTitle%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  268.                                                                         {{ element.nomSecteurActivite }} ({{ element.nb_fonds_investissement }})
  269.                                                                     </a>
  270.                                                                 {% else %}
  271.                                                                     <span class="disabled-link">{{ element.nomSecteurActivite }} ({{ element.nb_fonds_investissement }})</span>
  272.                                                                 {% endif %}
  273.                                                             </li>
  274.                                                         {% endif %}
  275.                                                     {% endfor %}
  276.                                                 </ul>
  277.                                             </div>
  278.                                             <div class="col-6 pt-2 mt-3">
  279.                                                 <ul class="cat_regions">
  280.                                                     {% for index, element in sous_secteurs_numbers %}
  281.                                                         {% set arrayVarsTrans =  {"nomPourTitle": element.nomPourTitle|lower }  %}
  282.                                                         {% if index >= half %}
  283.                                                             <li>
  284.                                                                 {% if element.nb_fonds_investissement > 0 %}
  285.                                                                     <a href="{{ path('ouvrir_capital_fonds_investissement_secteur_activite', {'slug' : element.nomSecteurActivite|slugify, 'idSecteurActivite' : element.idSecteurActivite, 'codePays' : codePaysWithUnderScore }) }}"
  286.                                                                        title="{{ translate("fonds d'investissement %$nomPourTitle%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  287.                                                                         {{ element.nomSecteurActivite }} ({{ element.nb_fonds_investissement }})
  288.                                                                     </a>
  289.                                                                 {% else %}
  290.                                                                     <span class="disabled-link">{{ element.nomSecteurActivite }} ({{ element.nb_fonds_investissement }})</span>
  291.                                                                 {% endif %}
  292.                                                             </li>
  293.                                                         {% endif %}
  294.                                                     {% endfor %}
  295.                                                 </ul>
  296.                                             </div>
  297.                                         {% endif %}
  298.                                     </div>
  299.                                 </div>
  300.                             </div>
  301.                         </div>
  302.                     </div>
  303.                 {% elseif idSecteurActivite and idLocalisation %}
  304.                     <div class="row">
  305.                         <div class="col-12">
  306.                             <div class="card no_shadow mb-3 card-ie">
  307.                                 <div class="card-body">
  308.                                     <div class="row">
  309.                                         <div class="col-12 mt-1 mb-3">
  310.                                             <div class="float-left">
  311.                                                 {% if prev_localisation %}
  312.                                                     {% set arrayVarsTrans =  {"prefixe": prev_localisation.prefixe, "nom_localisation" : prev_localisation.nom_localisation, "nomPourTitle": secteurActivites|last.nomPourTitle|lower }  %}
  313.                                                     <a href="{{ path('ouvrir_capital_fonds_investissement_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}) }}"
  314.                                                        title="{{ translate("fonds d'investissement %$nomPourTitle%$ %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  315.                                                         <i class="fas fa-arrow-circle-up fa-2x orange-new"></i>
  316.                                                     </a>
  317.                                                 {% else %}
  318.                                                     <i class="fas fa-arrow-circle-up fa-2x orange-new"></i>
  319.                                                 {% endif %}
  320.                                             </div>
  321.                                             <div class="lh18 ml-5">
  322.                                                 <strong class="orange-new">{{ localisations|last.nom_localisation }} ({{ nb_fonds_investissement }})</strong>
  323.                                             </div>
  324.                                         </div>
  325.                                         {% set nb_elements = sous_localisations_numbers | length %}
  326.                                         {% if nb_elements > 0 and nb_elements <= 5 %}
  327.                                             <div class="col-12 pt-2">
  328.                                                 <ul class="cat_regions">
  329.                                                     {% for element in sous_localisations_numbers %}
  330.                                                         {% set arrayVarsTrans =  {"prefixe": element.prefixe, "nom_localisation" : element.nom_localisation, "nomPourTitle": secteurActivites|last.nomPourTitle|lower }  %}
  331.                                                         <li>
  332.                                                             {% if element.nb_fonds_investissement > 0 %}
  333.                                                                 <a href="{{ path('ouvrir_capital_fonds_investissement_croise', {'nomLocalisation' : element.nom_localisation|slugify, 'nomSecteurActivite' : secteurActivites|last.nomSecteurActivite|slugify, 'idLocalisation' : element.id_localisation, 'type' : element.type, 'idSecteurActivite' : secteurActivites|last.idSecteurActivite, 'codePays' : codePaysWithUnderScore }) }}"
  334.                                                                    title="{{ translate("fonds d'investissement %$nomPourTitle%$ %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  335.                                                                     {{ element.nom_localisation }} ({{ element.nb_fonds_investissement }})
  336.                                                                 </a>
  337.                                                             {% else %}
  338.                                                                 <span class="disabled-link">{{ element.nom_localisation }} ({{ element.nb_fonds_investissement }})</span>
  339.                                                             {% endif %}
  340.                                                         </li>
  341.                                                     {% endfor %}
  342.                                                 </ul>
  343.                                             </div>
  344.                                         {% elseif nb_elements > 5 %}
  345.                                             {% set half = ((sous_localisations_numbers | length) / 2)| round(0, 'ceil') %}
  346.                                             <div class="col-6 pt-2 mt-3">
  347.                                                 <ul class="cat_regions">
  348.                                                     {% for index, element in sous_localisations_numbers %}
  349.                                                         {% set arrayVarsTrans =  {"prefixe": element.prefixe, "nom_localisation" : element.nom_localisation, "nomPourTitle": secteurActivites|last.nomPourTitle|lower }  %}
  350.                                                         {% if index < half %}
  351.                                                             <li>
  352.                                                                 {% if element.nb_fonds_investissement > 0 %}
  353.                                                                     <a href="{{ path('ouvrir_capital_fonds_investissement_croise', {'nomLocalisation' : element.nom_localisation|slugify, 'nomSecteurActivite' : secteurActivites|last.nomSecteurActivite|slugify, 'idLocalisation' : element.id_localisation, 'type' : element.type, 'idSecteurActivite' : secteurActivites|last.idSecteurActivite, 'codePays' : codePaysWithUnderScore }) }}"
  354.                                                                        title="{{ translate("fonds d'investissement %$nomPourTitle%$ %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  355.                                                                         {{ element.nom_localisation }} ({{ element.nb_fonds_investissement }})
  356.                                                                     </a>
  357.                                                                 {% else %}
  358.                                                                     <span class="disabled-link">{{ element.nom_localisation }} ({{ element.nb_fonds_investissement }})</span>
  359.                                                                 {% endif %}
  360.                                                             </li>
  361.                                                         {% endif %}
  362.                                                     {% endfor %}
  363.                                                 </ul>
  364.                                             </div>
  365.                                             <div class="col-6 pt-2 mt-3">
  366.                                                 <ul class="cat_regions">
  367.                                                     {% for index, element in sous_localisations_numbers %}
  368.                                                         {% set arrayVarsTrans =  {"prefixe": element.prefixe, "nom_localisation" : element.nom_localisation, "nomPourTitle": secteurActivites|last.nomPourTitle|lower }  %}
  369.                                                         {% if index >= half %}
  370.                                                             <li>
  371.                                                                 {% if element.nb_fonds_investissement > 0 %}
  372.                                                                     <a href="{{ path('ouvrir_capital_fonds_investissement_croise', {'nomLocalisation' : element.nom_localisation|slugify, 'nomSecteurActivite' : secteurActivites|last.nomSecteurActivite|slugify, 'idLocalisation' : element.id_localisation, 'type' : element.type, 'idSecteurActivite' : secteurActivites|last.idSecteurActivite, 'codePays' : codePaysWithUnderScore }) }}"
  373.                                                                        title="{{ translate("fonds d'investissement %$nomPourTitle%$ %$prefixe%$ %$nom_localisation%$",lang,"","M", "", arrayVarsTrans) | raw }}">
  374.                                                                         {{ element.nom_localisation }} ({{ element.nb_fonds_investissement }})
  375.                                                                     </a>
  376.                                                                 {% else %}
  377.                                                                     <span class="disabled-link">{{ element.nom_localisation }} ({{ element.nb_fonds_investissement }})</span>
  378.                                                                 {% endif %}
  379.                                                             </li>
  380.                                                         {% endif %}
  381.                                                     {% endfor %}
  382.                                                 </ul>
  383.                                             </div>
  384.                                         {% endif %}
  385.                                     </div>
  386.                                 </div>
  387.                             </div>
  388.                         </div>
  389.                     </div>
  390.                 {% endif %}
  391.                 <!--2 BOUTONS-->
  392.                 <div class="row mt-3 mb-3">
  393.                     <div class="col-12 pt-2 mb-4 text-right">
  394.                         <a href="{{ path('ouvrir_capital_recherche_fonds_investissement',{'codePays':codePaysWithUnderScore}  ) }}?{{ string_params }}" class="text-decoration-none" title="{{ translate("modifiez votre recherche",lang,"","M") | raw }}">
  395.                             <button type="submit" class="btn btn-orange-new mt-2">{{ translate("modifiez votre recherche",lang,"","M") | raw }}</button>
  396.                         </a>
  397.                     </div>
  398.                 </div>
  399.                 <!--FIN 2 BOUTONS-->
  400.                 {% if idLocalisation and not idSecteurActivite %}
  401.                     <div class="row" >
  402.                         <div class="col-12 mb-3 ml-3">
  403.                             {% set p = "" %}
  404.                             {% if ( nb_annonces > 1 ) %}
  405.                                 {% set p = "p" %}
  406.                             {% endif %}
  407.                             {% set arrayVarsTrans =  {"prefixe": localisations|last.prefixe, "nom_localisation" : localisations|last.nom_localisation }  %}
  408.                             <span class="fs13 orange-new">{{ nb_annonces }} {{ translate("$$opportunité$${p|opportunités} %$prefixe%$ %$nom_localisation%$ dont",lang,"","m", p, arrayVarsTrans) | raw }} :</span>
  409.                         </div>
  410.                     </div>
  411.                     <!--MOBILE-->
  412.                     <div class="row d-block d-sm-none bkg_gris_clair">
  413.                         <div class="col-12">
  414.                             <div class="row">
  415.                                 <div class="col-6 text-center my-3 br_gris">
  416.                                     <div class="blanc lh099 py-3">
  417.                                         <a href="{{ path('ouvrir_capital_business_angel_localisation',{'slug':slug, 'type':type, 'idLocalisation':idLocalisation, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="orange-new lh099 py-3">
  418.                                             <span class="fs2">{{ nb_business_angel }}</span><br>
  419.                                             {% set p = "" %}
  420.                                             {% if ( nb_business_angel > 1 ) %}
  421.                                                 {% set p = "p" %}
  422.                                             {% endif %}
  423.                                             <span class="res_font">{{ translate("business<br>angel",lang,"","m", p) | raw }}</span>
  424.                                         </a>
  425.                                     </div>
  426.                                 </div>
  427.                                 <div class="col-6 text-center my-3 pr-4 br_gris">
  428.                                     <div class="blanc lh099 py-3">
  429.                                         <a href="{{ path('ouvrir_capital_recherche_partenariat_localisation',{'slug':slug, 'type':type, 'idLocalisation':idLocalisation, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="orange-new lh099 py-3">
  430.                                             <span class="fs2">{{ nb_recherches_partenariats }}</span><br>
  431.                                             {% set p = "" %}
  432.                                             {% if ( nb_recherches_partenariats > 1 ) %}
  433.                                                 {% set p = "p" %}
  434.                                             {% endif %}
  435.                                             <span class="res_font">{{ translate("$$recherche de partenariat$${p|recherches de partenariats}",lang,"","m", p) | raw }}</span>
  436.                                         </a>
  437.                                     </div>
  438.                                 </div>
  439.                                 
  440.                                 <div class="col-6 text-center my-3">
  441.                                     <div class="blanc lh099 py-3">
  442.                                         <a href="{{ path('ouvrir_capital_cv_repreneur_localisation',{'slug':slug, 'type':type, 'idLocalisation':idLocalisation, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="orange-new lh099 py-3">
  443.                                             <span class="fs2">{{ nb_repreneurs_investisseurs + nb_acquereurs_investisseurs }}</span><br>
  444.                                             {% set p = "" %}
  445.                                             {% if ( nb_repreneurs_investisseurs + nb_acquereurs_investisseurs > 1 ) %}
  446.                                                 {% set p = "p" %}
  447.                                             {% endif %}
  448.                                             <span class="res_font">{{ translate("$$acheteur<br>prêt à investir$${p|acheteurs<br>prêts à investir}",lang,"","m", p) | raw }}</span>
  449.                                         </a>
  450.                                     </div>
  451.                                 </div>
  452.                                 <div class="col-6  text-center my-3">
  453.                                     <div class="blanc bkg_orange_new lh099 py-3">
  454.                                         <span class="fs2">{{ nb_fonds_investissement }}</span><br>
  455.                                         {% set p = "" %}
  456.                                         {% if ( nb_fonds_investissement > 1 ) %}
  457.                                             {% set p = "p" %}
  458.                                         {% endif %}
  459.                                         <span class="res_font">{{ translate("fonds<br>d'investissement",lang,"","m", p) | raw }}</span>
  460.                                     </div>
  461.                                 </div>
  462.                             </div>
  463.                         </div>
  464.                     </div>
  465.                     <!--MOBILE-->
  466.                     <!--TOUT SAUF MOBILE-->
  467.                     <div class="row d-none d-sm-block">
  468.                         <div class="onglet8 col-12 mb-4">
  469.                             <nav>
  470.                                 <div class="nav nav-tabs nav-fill" id="nav-tab" role="tablist">
  471.                                     <div class="col-12 col-sm-3 no-padding-x bl_gris br_gris lh13 order-sm-1">
  472.                                         <a class="nav-item nav-link" href="{{ path('ouvrir_capital_business_angel_localisation',{'slug':slug, 'type':type, 'idLocalisation':idLocalisation, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
  473.                                             {% set p = "" %}
  474.                                             {% if ( nb_business_angel > 1 ) %}
  475.                                                 {% set p = "p" %}
  476.                                             {% endif %}
  477.                                             <span class="fs2">{{ nb_business_angel }}</span><br><span class="fs12">{{ translate("business<br>angel",lang,"","m", p) | raw }}</span>
  478.                                         </a>
  479.                                     </div>
  480.                                     <div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-2">
  481.                                         <a class="nav-item nav-link" href="{{ path('ouvrir_capital_recherche_partenariat_localisation',{'slug':slug, 'type':type, 'idLocalisation':idLocalisation, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
  482.                                             {% set p = "" %}
  483.                                             {% if ( nb_recherches_partenariats > 1 ) %}
  484.                                                 {% set p = "p" %}
  485.                                             {% endif %}
  486.                                             <span class="fs2">{{ nb_recherches_partenariats }}</span><br><span class="fs12">{{ translate("$$recherche de partenariat$${p|recherches de partenariats}",lang,"","m", p) | raw }}</span>
  487.                                         </a>
  488.                                     </div>
  489.                                     <div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-3">
  490.                                         <a class="nav-item nav-link" href="{{ path('ouvrir_capital_cv_repreneur_localisation',{'slug':slug, 'type':type, 'idLocalisation':idLocalisation, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
  491.                                             {% set p = "" %}
  492.                                             {% if ( nb_repreneurs_investisseurs + nb_acquereurs_investisseurs > 1 ) %}
  493.                                                 {% set p = "p" %}
  494.                                             {% endif %}
  495.                                             <span class="fs2">{{ nb_repreneurs_investisseurs + nb_acquereurs_investisseurs }}</span><br><span class="fs12">{{ translate("$$acheteur<br>prêt à investir$${p|acheteurs<br>prêts à investir}",lang,"","m", p) | raw }}</span>
  496.                                         </a>
  497.                                     </div>
  498.                                     <div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-4 order-sm-4">
  499.                                         <div class="nav-item nav-link active">
  500.                                             {% set p = "" %}
  501.                                             {% if ( nb_fonds_investissement > 1 ) %}
  502.                                                 {% set p = "p" %}
  503.                                             {% endif %}
  504.                                             <span class="fs2">{{ nb_fonds_investissement }}</span><br><span class="fs12">{{ translate("fonds<br>d'investissement",lang,"","m", p) | raw }}</span>
  505.                                         </div>
  506.                                     </div>
  507.                                 </div>
  508.                             </nav>
  509.                         </div>
  510.                     </div>
  511.                     <!--TOUT SAUF MOBILE-->
  512.                 {% elseif idSecteurActivite and not idLocalisation %}
  513.                     <div class="row" >
  514.                         <div class="col-12 mb-3 ml-3">
  515.                             {% set p = "" %}
  516.                             {% if ( nb_annonces > 1 ) %}
  517.                                 {% set p = "p" %}
  518.                             {% endif %}
  519.                             {% set arrayVarsTrans =  {"nomPourTitle": secteurActivites|last.nomPourTitle|lower }  %}
  520.                             <span class="fs13 orange-new">{{ nb_annonces }} {{ translate("$$opportunité$${p|opportunités} dont",lang,"","m", p) | raw }} :</span>
  521.                         </div>
  522.                     </div>
  523.                     <!--MOBILE-->
  524.                     <div class="row d-block d-sm-none bkg_gris_clair">
  525.                         <div class="col-12">
  526.                             <div class="row">
  527.                                 <div class="col-6 text-center my-3 br_gris">
  528.                                     <div class="blanc lh099 py-3">
  529.                                         <a href="{{ path('ouvrir_capital_business_angel_secteur_activite',{'slug': slug, 'idSecteurActivite' : idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="orange-new lh099 py-3">
  530.                                             <span class="fs2">{{ nb_business_angel }}</span><br>
  531.                                             {% set p = "" %}
  532.                                             {% if ( nb_business_angel > 1 ) %}
  533.                                                 {% set p = "p" %}
  534.                                             {% endif %}
  535.                                             <span class="res_font">{{ translate("business<br>angel",lang,"","m", p) | raw }}</span>
  536.                                         </a>
  537.                                     </div>
  538.                                 </div>
  539.                                 <div class="col-6 text-center my-3 pr-4 br_gris">
  540.                                     <div class="blanc lh099 py-3">
  541.                                         <a href="{{ path('ouvrir_capital_recherche_partenariat_secteur_activite',{'slug': slug, 'idSecteurActivite' : idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="orange-new lh099 py-3">
  542.                                             <span class="fs2">{{ nb_recherches_partenariats }}</span><br>
  543.                                             {% set p = "" %}
  544.                                             {% if ( nb_recherches_partenariats > 1 ) %}
  545.                                                 {% set p = "p" %}
  546.                                             {% endif %}
  547.                                             <span class="res_font">{{ translate("$$recherche de partenariat$${p|recherches de partenariats}",lang,"","m", p) | raw }}</span>
  548.                                         </a>
  549.                                     </div>
  550.                                 </div>
  551.                                 
  552.                                 <div class="col-6 text-center my-3">
  553.                                     <div class="blanc lh099 py-3">
  554.                                         <a href="{{ path('ouvrir_capital_cv_repreneur_secteur_activite',{'slug': slug, 'idSecteurActivite' : idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="orange-new lh099 py-3">
  555.                                             <span class="fs2">{{ nb_repreneurs_investisseurs + nb_acquereurs_investisseurs }}</span><br>
  556.                                             {% set p = "" %}
  557.                                             {% if ( nb_repreneurs_investisseurs + nb_acquereurs_investisseurs > 1 ) %}
  558.                                                 {% set p = "p" %}
  559.                                             {% endif %}
  560.                                             <span class="res_font">{{ translate("$$acheteur<br>prêt à investir$${p|acheteurs<br>prêts à investir}",lang,"","m", p) | raw }}</span>
  561.                                         </a>
  562.                                     </div>
  563.                                 </div>
  564.                                 <div class="col-6  text-center my-3">
  565.                                     <div class="blanc bkg_orange_new lh099 py-3">
  566.                                         <span class="fs2">{{ nb_fonds_investissement }}</span><br>
  567.                                         {% set p = "" %}
  568.                                         {% if ( nb_fonds_investissement > 1 ) %}
  569.                                             {% set p = "p" %}
  570.                                         {% endif %}
  571.                                         <span class="res_font">{{ translate("fonds<br>d'investissement",lang,"","m", p) | raw }}</span>
  572.                                     </div>
  573.                                 </div>
  574.                             </div>
  575.                         </div>
  576.                     </div>
  577.                     <!--MOBILE-->
  578.                     <!--TOUT SAUF MOBILE-->
  579.                     <div class="row d-none d-sm-block">
  580.                         <div class="onglet8 col-12 mb-4">
  581.                             <nav>
  582.                                 <div class="nav nav-tabs nav-fill" id="nav-tab" role="tablist">
  583.                                     <div class="col-12 col-sm-3 no-padding-x bl_gris br_gris lh13 order-sm-1">
  584.                                         <a class="nav-item nav-link" href="{{ path('ouvrir_capital_business_angel_secteur_activite',{'slug': slug, 'idSecteurActivite' : idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
  585.                                             {% set p = "" %}
  586.                                             {% if ( nb_business_angel > 1 ) %}
  587.                                                 {% set p = "p" %}
  588.                                             {% endif %}
  589.                                             <span class="fs2">{{ nb_business_angel }}</span><br><span class="fs12">{{ translate("business<br>angel",lang,"","m", p) | raw }}</span>
  590.                                         </a>
  591.                                     </div>
  592.                                     <div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-2">
  593.                                         <a class="nav-item nav-link" href="{{ path('ouvrir_capital_recherche_partenariat_secteur_activite',{'slug': slug, 'idSecteurActivite' : idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
  594.                                             {% set p = "" %}
  595.                                             {% if ( nb_recherches_partenariats > 1 ) %}
  596.                                                 {% set p = "p" %}
  597.                                             {% endif %}
  598.                                             <span class="fs2">{{ nb_recherches_partenariats }}</span><br><span class="fs12">{{ translate("$$recherche de partenariat$${p|recherches de partenariats}",lang,"","m", p) | raw }}</span>
  599.                                         </a>
  600.                                     </div>
  601.                                     <div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-3">
  602.                                         <a class="nav-item nav-link" href="{{ path('ouvrir_capital_cv_repreneur_secteur_activite',{'slug': slug, 'idSecteurActivite' : idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
  603.                                             {% set p = "" %}
  604.                                             {% if ( nb_repreneurs_investisseurs + nb_acquereurs_investisseurs > 1 ) %}
  605.                                                 {% set p = "p" %}
  606.                                             {% endif %}
  607.                                             <span class="fs2">{{ nb_repreneurs_investisseurs + nb_acquereurs_investisseurs }}</span><br><span class="fs12">{{ translate("$$acheteur<br>prêt à investir$${p|acheteurs<br>prêts à investir}",lang,"","m", p) | raw }}</span>
  608.                                         </a>
  609.                                     </div>
  610.                                     <div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-4 order-sm-4">
  611.                                         <div class="nav-item nav-link active">
  612.                                             {% set p = "" %}
  613.                                             {% if ( nb_fonds_investissement > 1 ) %}
  614.                                                 {% set p = "p" %}
  615.                                             {% endif %}
  616.                                             <span class="fs2">{{ nb_fonds_investissement }}</span><br><span class="fs12">{{ translate("fonds<br>d'investissement",lang,"","m", p) | raw }}</span>
  617.                                         </div>
  618.                                     </div>
  619.                                 </div>
  620.                             </nav>
  621.                         </div>
  622.                     </div>
  623.                     <!--TOUT SAUF MOBILE-->
  624.                 {% elseif idLocalisation and idSecteurActivite %}
  625.                     <div class="row" >
  626.                         <div class="col-12 mb-3 ml-3">
  627.                             {% set p = "" %}
  628.                             {% if ( nb_annonces > 1 ) %}
  629.                                 {% set p = "p" %}
  630.                             {% endif %}
  631.                             {% set arrayVarsTrans =  {"prefixe": localisations|last.prefixe, "nom_localisation" : localisations|last.nom_localisation, "nomPourTitle": secteurActivites|last.nomPourTitle|lower }  %}
  632.                             <span class="fs13 orange-new">{{ nb_annonces }} {{ translate("$$opportunité$${p|opportunités} dont",lang,"","m", p) | raw }} :</span>
  633.                         </div>
  634.                     </div>
  635.                     <!--MOBILE-->
  636.                     <div class="row d-block d-sm-none bkg_gris_clair">
  637.                         <div class="col-12">
  638.                             <div class="row">
  639.                                 <div class="col-6 text-center my-3 br_gris">
  640.                                     <div class="blanc lh099 py-3">
  641.                                         <a href="{{ path('ouvrir_capital_business_angel_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="orange-new lh099 py-3">
  642.                                             <span class="fs2">{{ nb_business_angel }}</span><br>
  643.                                             {% set p = "" %}
  644.                                             {% if ( nb_business_angel > 1 ) %}
  645.                                                 {% set p = "p" %}
  646.                                             {% endif %}
  647.                                             <span class="res_font">{{ translate("business<br>angel",lang,"","m", p) | raw }}</span>
  648.                                         </a>
  649.                                     </div>
  650.                                 </div>
  651.                                 <div class="col-6 text-center my-3 pr-4 br_gris">
  652.                                     <div class="blanc lh099 py-3">
  653.                                         <a href="{{ path('ouvrir_capital_recherche_partenariat_croise',{'nomLocalisation': localisations|last.nom_localisation|slugify, 'nomSecteurActivite' : secteurActivites|last.nomSecteurActivite|slugify, 'type': type, 'idLocalisation': localisations|last.id_localisation, 'idSecteurActivite' : secteurActivites|last.idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="orange-new lh099 py-3">
  654.                                             <span class="fs2">{{ nb_recherches_partenariats }}</span><br>
  655.                                             {% set p = "" %}
  656.                                             {% if ( nb_recherches_partenariats > 1 ) %}
  657.                                                 {% set p = "p" %}
  658.                                             {% endif %}
  659.                                             <span class="res_font">{{ translate("$$recherche de partenariat$${p|recherches de partenariats}",lang,"","m", p) | raw }}</span>
  660.                                         </a>
  661.                                     </div>
  662.                                 </div>
  663.                                 
  664.                                 <div class="col-6 text-center my-3">
  665.                                     <div class="blanc lh099 py-3">
  666.                                         <a href="{{ path('ouvrir_capital_cv_repreneur_croise',{'nomLocalisation': localisations|last.nom_localisation|slugify, 'nomSecteurActivite' : secteurActivites|last.nomSecteurActivite|slugify, 'type': type, 'idLocalisation': localisations|last.id_localisation, 'idSecteurActivite' : secteurActivites|last.idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="orange-new lh099 py-3">
  667.                                             <span class="fs2">{{ nb_repreneurs_investisseurs + nb_acquereurs_investisseurs }}</span><br>
  668.                                             {% set p = "" %}
  669.                                             {% if ( nb_repreneurs_investisseurs + nb_acquereurs_investisseurs > 1 ) %}
  670.                                                 {% set p = "p" %}
  671.                                             {% endif %}
  672.                                             <span class="res_font">{{ translate("$$acheteur<br>prêt à investir$${p|acheteurs<br>prêts à investir}",lang,"","m", p) | raw }}</span>
  673.                                         </a>
  674.                                     </div>
  675.                                 </div>
  676.                                 <div class="col-6  text-center my-3">
  677.                                     <div class="blanc bkg_orange_new lh099 py-3">
  678.                                         <span class="fs2">{{ nb_fonds_investissement }}</span><br>
  679.                                         {% set p = "" %}
  680.                                         {% if ( nb_fonds_investissement > 1 ) %}
  681.                                             {% set p = "p" %}
  682.                                         {% endif %}
  683.                                         <span class="res_font">{{ translate("fonds<br>d'investissement",lang,"","m", p) | raw }}</span>
  684.                                     </div>
  685.                                 </div>
  686.                             </div>
  687.                         </div>
  688.                     </div>
  689.                     <!--MOBILE-->
  690.                     <!--TOUT SAUF MOBILE-->
  691.                     <div class="row d-none d-sm-block">
  692.                         <div class="onglet8 col-12 mb-4">
  693.                             <nav>
  694.                                 <div class="nav nav-tabs nav-fill" id="nav-tab" role="tablist">
  695.                                     <div class="col-12 col-sm-3 no-padding-x bl_gris br_gris lh13 order-sm-1">
  696.                                         <a class="nav-item nav-link" href="{{ path('ouvrir_capital_business_angel_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 }}">
  697.                                             {% set p = "" %}
  698.                                             {% if ( nb_business_angel > 1 ) %}
  699.                                                 {% set p = "p" %}
  700.                                             {% endif %}
  701.                                             <span class="fs2">{{ nb_business_angel }}</span><br><span class="fs12">{{ translate("business<br>angel",lang,"","m", p) | raw }}</span>
  702.                                         </a>
  703.                                     </div>
  704.                                     <div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-2">
  705.                                         <a class="nav-item nav-link" href="{{ path('ouvrir_capital_recherche_partenariat_croise',{'nomLocalisation': localisations|last.nom_localisation|slugify, 'nomSecteurActivite' : secteurActivites|last.nomSecteurActivite|slugify, 'type': type, 'idLocalisation': localisations|last.id_localisation, 'idSecteurActivite' : secteurActivites|last.idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
  706.                                             {% set p = "" %}
  707.                                             {% if ( nb_recherches_partenariats > 1 ) %}
  708.                                                 {% set p = "p" %}
  709.                                             {% endif %}
  710.                                             <span class="fs2">{{ nb_recherches_partenariats }}</span><br><span class="fs12">{{ translate("$$recherche de partenariat$${p|recherches de partenariats}",lang,"","m", p) | raw }}</span>
  711.                                         </a>
  712.                                     </div>
  713.                                     <div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-3">
  714.                                         <a class="nav-item nav-link" href="{{ path('ouvrir_capital_cv_repreneur_croise',{'nomLocalisation': localisations|last.nom_localisation|slugify, 'nomSecteurActivite' : secteurActivites|last.nomSecteurActivite|slugify, 'type': type, 'idLocalisation': localisations|last.id_localisation, 'idSecteurActivite' : secteurActivites|last.idSecteurActivite, 'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
  715.                                             {% set p = "" %}
  716.                                             {% if ( nb_repreneurs_investisseurs + nb_acquereurs_investisseurs > 1 ) %}
  717.                                                 {% set p = "p" %}
  718.                                             {% endif %}
  719.                                             <span class="fs2">{{ nb_repreneurs_investisseurs + nb_acquereurs_investisseurs }}</span><br><span class="fs12">{{ translate("$$acheteur<br>prêt à investir$${p|acheteurs<br>prêts à investir}",lang,"","m", p) | raw }}</span>
  720.                                         </a>
  721.                                     </div>
  722.                                     <div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-4 order-sm-4">
  723.                                         <div class="nav-item nav-link active">
  724.                                             {% set p = "" %}
  725.                                             {% if ( nb_fonds_investissement > 1 ) %}
  726.                                                 {% set p = "p" %}
  727.                                             {% endif %}
  728.                                             <span class="fs2">{{ nb_fonds_investissement }}</span><br><span class="fs12">{{ translate("fonds<br>d'investissement",lang,"","m", p) | raw }}</span>
  729.                                         </div>
  730.                                     </div>
  731.                                 </div>
  732.                             </nav>
  733.                         </div>
  734.                     </div>
  735.                     <!--TOUT SAUF MOBILE-->
  736.                 {% else %}
  737.                     <div class="row" >
  738.                         <div class="col-12 mb-3 ml-3">
  739.                             {% set p = "" %}
  740.                             {% if ( nb_annonces > 1 ) %}
  741.                                 {% set p = "p" %}
  742.                             {% endif %}
  743.                             <span class="fs13 orange-new">{{ nb_annonces }} {{ translate("$$opportunité$${p|opportunités} dont",lang,"","m", p) | raw }} :</span>
  744.                         </div>
  745.                     </div>
  746.                     <!--MOBILE-->
  747.                     <div class="row d-block d-sm-none bkg_gris_clair">
  748.                         <div class="col-12">
  749.                             <div class="row">
  750.                                 <div class="col-6 text-center my-3 br_gris">
  751.                                     <div class="blanc lh099 py-3">
  752.                                         <a href="{{ path('ouvrir_capital_resultats_business_angel',{'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="orange-new lh099 py-3">
  753.                                             <span class="fs2">{{ nb_business_angel }}</span><br>
  754.                                             {% set p = "" %}
  755.                                             {% if ( nb_business_angel > 1 ) %}
  756.                                                 {% set p = "p" %}
  757.                                             {% endif %}
  758.                                             <span class="res_font">{{ translate("business<br>angel",lang,"","m", p) | raw }}</span>
  759.                                         </a>
  760.                                     </div>
  761.                                 </div>
  762.                                 <div class="col-6 text-center my-3 pr-4 br_gris">
  763.                                     <div class="blanc lh099 py-3">
  764.                                         <a href="{{ path('ouvrir_capital_resultats_recherches_partenariat',{'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="orange-new lh099 py-3">
  765.                                             <span class="fs2">{{ nb_recherches_partenariats }}</span><br>
  766.                                             {% set p = "" %}
  767.                                             {% if ( nb_recherches_partenariats > 1 ) %}
  768.                                                 {% set p = "p" %}
  769.                                             {% endif %}
  770.                                             <span class="res_font">{{ translate("$$recherche de partenariat$${p|recherches de partenariats}",lang,"","m", p) | raw }}</span>
  771.                                         </a>
  772.                                     </div>
  773.                                 </div>
  774.                                 
  775.                                 <div class="col-6 text-center my-3">
  776.                                     <div class="blanc lh099 py-3">
  777.                                         <a href="{{ path('ouvrir_capital_resultats_cv_repreneur',{'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}" class="orange-new lh099 py-3">
  778.                                             <span class="fs2">{{ nb_repreneurs_investisseurs + nb_acquereurs_investisseurs }}</span><br>
  779.                                             {% set p = "" %}
  780.                                             {% if ( nb_repreneurs_investisseurs + nb_acquereurs_investisseurs > 1 ) %}
  781.                                                 {% set p = "p" %}
  782.                                             {% endif %}
  783.                                             <span class="res_font">{{ translate("$$acheteur<br>prêt à investir$${p|acheteurs<br>prêts à investir}",lang,"","m", p) | raw }}</span>
  784.                                         </a>
  785.                                     </div>
  786.                                 </div>
  787.                                 <div class="col-6  text-center my-3">
  788.                                     <div class="blanc bkg_orange_new lh099 py-3">
  789.                                         <span class="fs2">{{ nb_fonds_investissement }}</span><br>
  790.                                         {% set p = "" %}
  791.                                         {% if ( nb_fonds_investissement > 1 ) %}
  792.                                             {% set p = "p" %}
  793.                                         {% endif %}
  794.                                         <span class="res_font">{{ translate("fonds<br>d'investissement",lang,"","m", p) | raw }}</span>
  795.                                     </div>
  796.                                 </div>
  797.                             </div>
  798.                         </div>
  799.                     </div>
  800.                     <!--MOBILE-->
  801.                     <!--TOUT SAUF MOBILE-->
  802.                     <div class="row d-none d-sm-block">
  803.                         <div class="onglet8 col-12 mb-4">
  804.                             <nav>
  805.                                 <div class="nav nav-tabs nav-fill" id="nav-tab" role="tablist">
  806.                                     <div class="col-12 col-sm-3 no-padding-x bl_gris br_gris lh13 order-sm-1">
  807.                                         <a class="nav-item nav-link" href="{{ path('ouvrir_capital_resultats_business_angel',{'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
  808.                                             {% set p = "" %}
  809.                                             {% if ( nb_business_angel > 1 ) %}
  810.                                                 {% set p = "p" %}
  811.                                             {% endif %}
  812.                                             <span class="fs2">{{ nb_business_angel }}</span><br><span class="fs12">{{ translate("business<br>angel",lang,"","m", p) | raw }}</span>
  813.                                         </a>
  814.                                     </div>
  815.                                     <div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-2">
  816.                                         <a class="nav-item nav-link" href="{{ path('ouvrir_capital_resultats_recherches_partenariat',{'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
  817.                                             {% set p = "" %}
  818.                                             {% if ( nb_recherches_partenariats > 1 ) %}
  819.                                                 {% set p = "p" %}
  820.                                             {% endif %}
  821.                                             <span class="fs2">{{ nb_recherches_partenariats }}</span><br><span class="fs12">{{ translate("$$recherche de partenariat$${p|recherches de partenariats}",lang,"","m", p) | raw }}</span>
  822.                                         </a>
  823.                                     </div>
  824.                                     <div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-sm-3">
  825.                                         <a class="nav-item nav-link" href="{{ path('ouvrir_capital_resultats_cv_repreneur',{'codePays':codePaysWithUnderScore}) }}?{{ string_params_without_page }}">
  826.                                             {% set p = "" %}
  827.                                             {% if ( nb_repreneurs_investisseurs + nb_acquereurs_investisseurs > 1 ) %}
  828.                                                 {% set p = "p" %}
  829.                                             {% endif %}
  830.                                             <span class="fs2">{{ nb_repreneurs_investisseurs + nb_acquereurs_investisseurs }}</span><br><span class="fs12">{{ translate("$$acheteur<br>prêt à investir$${p|acheteurs<br>prêts à investir}",lang,"","m", p) | raw }}</span>
  831.                                         </a>
  832.                                     </div>
  833.                                     <div class="col-12 col-sm-3 no-padding-x br_gris lh13 order-4 order-sm-4">
  834.                                         <div class="nav-item nav-link active">
  835.                                             {% set p = "" %}
  836.                                             {% if ( nb_fonds_investissement > 1 ) %}
  837.                                                 {% set p = "p" %}
  838.                                             {% endif %}
  839.                                             <span class="fs2">{{ nb_fonds_investissement }}</span><br><span class="fs12">{{ translate("fonds<br>d'investissement",lang,"","m", p) | raw }}</span>
  840.                                         </div>
  841.                                     </div>
  842.                                 </div>
  843.                             </nav>
  844.                         </div>
  845.                     </div>
  846.                     <!--TOUT SAUF MOBILE-->
  847.                 {% endif %}
  848.                 <div class="row mt-5" >
  849.                     <div class="col-12 mb-1 ml-3 mt-3">
  850.                         <span class="fs18 orange-new">{{ nb_fonds_investissement }} {{ translate("fonds d'investissement",lang,"","m", "") | raw }}</span>
  851.                     </div>
  852.                 </div>
  853.                 <!--PAGINATION-->
  854.                 <div class="row mt-3">
  855.                     <div class="col-sm-12">
  856.                         <nav aria-label="..." class="pagination-orange">
  857.                             {{ knp_pagination_render(liste_fonds) }}
  858.                         </nav>
  859.                     </div>
  860.                 </div>
  861.                 <!--FIN PAGINATION-->
  862.                 <div class="row mt-3 mb-2">
  863.                     <div class="col-12 col-sm-6 offset-sm-6 text-right">
  864.                         <div class="row">
  865.                             <div class="col-12 col-sm-4 pt-2 text-right">
  866.                                 <label for="idFromControlSelectTri">{{ translate("trier par",lang,"","M") | raw }}</label>
  867.                             </div>
  868.                             <div class="col-12 col-sm-8">
  869.                                 <select class="form-control" id="idFromControlSelectTri" v-on:change="sortBy($event)">
  870.                                     <option value="nb_op" {% if tri == "nb_op" %}selected="selected"{% endif %}>{{ translate("nombre d'operations",lang,"","M") | raw }}</option>
  871.                                     <option value="nom_asc" {% if tri == "nom_asc" %}selected="selected"{% endif %} >{{ translate("ordre alphabetique",lang,"","M") | raw }}</option>
  872.                                     <option value="date_desc" {% if tri == "date_desc" %}selected="selected"{% endif %} >{{ translate("date derniere operation",lang,"","M") | raw }}</option>
  873.                                 </select>
  874.                             </div>
  875.                         </div>
  876.                     </div>
  877.                 </div>
  878.                 <div class="row" >
  879.                     <div class="col-12">
  880.                         <!--ANNONCES -->
  881.                         {% for index, fonds in liste_fonds %}
  882.                             <div class="card mb-3 card-ie filet_gris">
  883.                                 <div class="card-body">
  884.                                     <div class="row">
  885.                                         {% if has_service or fonds.commande %}
  886.                                             {% set nomSociete = fonds.nom_societe %}
  887.                                         {% else %}
  888.                                             {% set nomSociete = fonds.nom_societe | slice(0, 1) ~ '******' %}
  889.                                         {% endif %}
  890.                                         
  891.                                         {% set lienFondsInvestissement = path('ouvrir_capital_fonds_investissement_details_crypte',
  892.                                          {
  893.                                              'idFonds': encrypt(fonds.id_gestionnaire_fonds ~ ''),
  894.                                              'codePays':codePaysWithUnderScore
  895.                                          }) ~ '?urlList=' ~ urlList ~ '&' ~ string_params ~ '&index=' ~ index
  896.                                         %}
  897.                                         <div class="col-12 col-md-8 col-lg-9 col-xl-10">
  898.                                             <div>
  899.                                                 <h5 class="titre_annonce_orange">
  900.                                                     <a href="{{ lienFondsInvestissement }}" title="{{ nomSociete }}">
  901.                                                         {{ nomSociete }}
  902.                                                     </a>
  903.                                                 </h5>
  904.                                             </div>
  905.                                             <div class="mb-1">
  906.                                                 <span class="nowrap_custom">
  907.                                                     <strong>{{ fonds.nb_participation }}</strong> 
  908.                                                     {% if is_recherche %}
  909.                                                     {{ translate("$$operation$${p|operations} avec ces critères" ,lang,"","M", p) | raw }}
  910.                                                     {% else %}
  911.                                                     {{ translate("$$operation$${p|operations}" ,lang,"","M", p) | raw }}
  912.                                                     {% endif %}
  913.                                                 </span>&nbsp;&nbsp;&nbsp;&nbsp;
  914.                                                 <span class="nowrap_custom">{{ translate("date derniere operation" ,lang,"","M") | raw }} : <strong>{{ fonds.date_investissement_formated }}</strong></span>
  915.                                             </div>
  916.                                             <i class="fas fa-map-marker-alt"></i>&nbsp; {{ fonds.nom_localisation }}
  917.                                         </div>
  918.                                         <div class="col-12 col-md-4 col-lg-3 col-xl-2" id="cartes">
  919.                                             <div class="row">
  920.                                                 <div class="col-4 col-md-12 text-center" style="">
  921.                                                     <a href="{{ lienFondsInvestissement }}" title="{{ fonds.nom_localisation }}">
  922.                                                         <img src="{{ fonds.carte }}" alt="{{ fonds.nom_localisation }}" class="img-fluid">
  923.                                                     </a>
  924.                                                 </div>
  925.                                             </div>
  926.                                         </div>
  927.                                         <div class="col-4 col-md-4 col-lg-4 mt-2">
  928.                                             <a href="{{ lienFondsInvestissement }}" title="{{ translate("voir les details" ,lang,"","M") | raw }}">
  929.                                                 <button type="button" class="btn btn-orange-new">
  930.                                                     {{ translate("voir les details" ,lang,"","M") | raw }}
  931.                                                 </button>
  932.                                             </a>
  933.                                         </div>
  934.                                     </div>
  935.                                 </div>
  936.                             </div>
  937.                         {% endfor %}
  938.                         <!--FIN ANNONCES -->
  939.                         <!--PUB FRANCHISE-->
  940.                         <!--<div class="card mb-3 card-ie card-franchises filet_gris">
  941.                                 <div class="card-header">Avez-vous pense a creer ou reprendre en franchise ?</div>
  942.                                 <div class="card-body">
  943.                             <div class="row">
  944.                                         <div class="col-6 col-md-3">
  945.                                                 <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>
  946.                                         </div>
  947.                                         <div class="col-6 col-md-7">
  948.                                                 <div>
  949.                                                         <a href="https://www.placedesfranchises.com/carslift" class="inter_orange_link" title="Carslift">CARSLIFT</a><br>
  950.                                                         <a href="https://www.placedesfranchises.com/carslift" class="vert_franchises" title="Le specialiste du bien motorise">Le specialiste du bien motorise</a><br>
  951.                                                         <span class="nowrap_custom">Apport : <strong>15 000 € </strong></span>&nbsp;&nbsp;&nbsp;&nbsp;
  952.                                                         <span class="nowrap_custom">Droit d'entree :  <strong>35 000 €</strong>
  953.                                                 </div>
  954.                                         </div>
  955.                                         <div class="col-12 col-md-2 text-center">
  956.                                                 <div class="pt-3 mt-2 inline"><small>Consultez sur </small></div>
  957.                                                 <div class=" inline"><img src="https://static.placedesfranchises.com/img/logo_text.jpg" width="120"></div>
  958.                                         </div>
  959.                                 </div>
  960.                                 </div>
  961.                         </div>-->
  962.                         <!--FIN PUB FRANCHISE-->
  963.                         <!--PUB FRANCHISE-->
  964.                         <!--<div class="card mb-3 card-ie card-franchises">
  965.                             <div class="card-header">{{ translate("avez-vous pense a creer ou reprendre en franchise ?",lang,"","M") | raw }}</div>
  966.                             <div class="card-body">
  967.                                 <div class="row">
  968.                                     <div class="col-12 col-md-6">
  969.                                         <a href="https://www.placedesfranchises.com/carslift" class="inter_orange_link" title="OUEST CONTRÔLE ENVIRONNEMENT">OUEST CONTRÔLE ENVIRONNEMENT</a>
  970.                                     </div>
  971.                                     <div class="col-12 col-md-6">
  972.                                         <div>
  973.                                             <a href="https://www.placedesfranchises.com/carslift" class="vert_franchises fs13" title="Le specialiste du bien motorise">Le specialiste du bien motorise</a><br>
  974.                                             <span class="nowrap_custom">{{ translate("apport",lang,"","M") | raw }} : <strong>15 000 € </strong></span>&nbsp;&nbsp;&nbsp;&nbsp;
  975.                                             <span class="nowrap_custom">{{ translate("droit d'entree",lang,"","M") | raw }} :  <strong>35 000 €</strong>
  976.                                         </div>
  977.                                     </div>
  978.                                     <div class="col-12 col-md-12 text-right mt-3">
  979.                                         <div class="inline"><small>{{ translate("consultez sur",lang,"","M") | raw }} </small></div>
  980.                                         <div class="inline"><img src="images/logo_PDF_petit.jpg" width="120"></div>
  981.                                     </div>
  982.                                 </div>
  983.                             </div>
  984.                         </div>-->
  985.                         <!--FIN PUB FRANCHISE-->
  986.                     </div>
  987.                 </div>
  988.                 <!--PAGINATION-->
  989.                 <div class="row mt-3">
  990.                     <div class="col-sm-12">
  991.                         <nav aria-label="..." class="pagination-orange">
  992.                             {{ knp_pagination_render(liste_fonds) }}
  993.                         </nav>
  994.                     </div>
  995.                 </div>
  996.                 <!--FIN PAGINATION-->
  997.                 <div class="col-sm-12 mb-5 mt-3 text-center">
  998.                     {% set arrayVarsTrans =  {"numero_contact": numero_contact, "url_page_contact" : path('contact', {'codePays':codePaysWithUnderScore}) }  %}
  999.                     {{ translate("votre structure n'apparaît pas dans la liste ?",lang,"","M") | raw }}<br>
  1000.                     {{ translate("pour intégrer cet annuaire gratuitement, contactez-nous au <strong>%$numero_contact%$</strong> ou par <a href='%$url_page_contact%$' target='_blank'>mail</a>.",lang,"","M", "", arrayVarsTrans) | raw }}
  1001.                 </div>
  1002.             </div><!--FIN COLONNE DROITE -->
  1003.         </div> <!--FIN ROW CONTAINER -->
  1004.     </div>  <!--FIN CONTAINER -->
  1005.     
  1006.     <!--MODAL 2-->
  1007.     <div class="modal fade" id="modal-condition" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
  1008.         <div class="modal-dialog" role="document">
  1009.             <div class="modal-content">
  1010.                 <div class="modal-header">
  1011.                     {% set p = "" %}
  1012.                     {% if ( nb_fonds_investissement > 1 ) %}
  1013.                         {% set p = "p" %}
  1014.                     {% endif %}
  1015.                     <h5 class="modal-title bleu" id="exampleModalLabel">{{ nb_fonds_investissement }} {{ translate("$$investisseur acquereur$${p|investisseurs acquereurs}",lang,"","m", p) | raw }} </h5>
  1016.                     <button type="button" class="close" data-dismiss="modal" aria-label="Close">
  1017.                         <span aria-hidden="true">&times;</span>
  1018.                     </button>
  1019.                 </div>
  1020.                 <div class="modal-body text-center">
  1021.                     Pour accéder aux fiches des fonds d'investissement vous devez :<br><br><br>
  1022.                     - Souscrire un abonnement simple à <a href="{{ path('tarifs_index', {'codePays' : codePaysWithUnderScore}) }}#participations">l'Annuaire des Fonds d'investissement</a><br>
  1023.                     <b>ou</b><br>
  1024.                     - Adhérer à l'offre <a href="{{ path('offreFusacqExpert', {'codePays': codePaysWithUnderScore}) }}" target="_blank"><strong>FUSACQ Expert</strong></a> qui comprend l'ensemble des services Fusacq<br><br><br>
  1025.                     <strong>Pour plus de détails contactez nous au 01&nbsp;48&nbsp;28&nbsp;24&nbsp;24</strong><br>
  1026.                 </div>
  1027.                 <div class="modal-footer">
  1028.                     <div class="col-6 text-center">Je suis déjà adhèrent <br><a href="#" data-toggle="modal" data-target="#modal-connexion" title=""><button type="button" class="button-rond">Je me connecte</button></a></div>
  1029.                     <div class="col-6 text-center">Les offres et les tarifs<br>
  1030.                         <a href="{{ path('offreFusacqExpert', {'codePays': codePaysWithUnderScore }) }}" target="_blank">
  1031.                             <button type="button" class="btn btn-fusacq_expert ">Fusacq Expert</button>
  1032.                         </a>
  1033.                     </div>
  1034.                 </div>
  1035.             </div>
  1036.         </div>
  1037.     </div>
  1038.     <!--FIN MODAL 2-->
  1039.     <!--MODAL 3-->
  1040.     <div class="modal fade" id="modal-connexion" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
  1041.         <div class="modal-dialog" role="document">
  1042.             <div class="modal-content">
  1043.                 <div class="modal-header">
  1044.                     <h5 class="modal-title" id="exampleModalLabel">Connexion</h5>
  1045.                     <button type="button" class="close" data-dismiss="modal" aria-label="Close">
  1046.                         <span aria-hidden="true">&times;</span>
  1047.                     </button>
  1048.                 </div>
  1049.                 <div class="modal-body mt-3">
  1050.                     {{ render_esi(controller(
  1051.                          'App\\Controller\\SecurityController::login',
  1052.                           {"from": "cible_potentielle" }
  1053.                      )) | spaceless }}
  1054.                 </div>
  1055.             </div>
  1056.         </div>
  1057.     </div>
  1058.     <!--FIN MODAL 3-->
  1059. {% endblock %}
  1060. {% block javascripts %}
  1061.     {{ parent() }}
  1062.     <script type="module" data-name="{{ codePaysWithUnderScore }}" id="codePaysParam" src="{{ asset('build/js/vendre_entreprise/acquereur_historique.js') }}"></script>
  1063. {% endblock %}