Bonjour,

J'ai la page ci-dessous qui affiche des infos et deux boutons permettant de rediriger vers d'autres pages de l'appli.
Ces 3 liens marchent sous chrome mais pas sous les deux autres navigateurs...

je sèche complet...

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{% extends "adminToolsAnnuaireBundle::layout.html.twig" %}
{% block TemplateBody %}
<legend><div class="btn-group"><button class="btn">{{ user }} </button>
<button class="btn btn-primary"><a style="color:white;text-decoration:none" href="{{ path('historique') }}">Admin </a> </button></div></legend>
<div class="navbar-inner" >  Fiche résumée du compte </div>
</br>
<table class="table table-hover table-bordered">
  
  <tbody>
 
    <tr>
        <td style="font-weight: bold">LOGIN</td>
      <td>{{ individu.login }}</td>
    </tr>
    <tr>
        <td style="font-weight: bold">NOM</td>
      <td>{{ individu.nom }}</td>
    </tr>
    <tr>
        <td style="font-weight: bold">PRENOM</td>
      <td>{{ individu.prenom }}</td>
    </tr>
    <tr>
        <td style="font-weight: bold">MAIL</td>
      <td>{{ individu.mail }}</td>
    </tr>
    <tr>
        <td style="font-weight: bold">SUPANN AFFECTATION</td>
      <td>{{ individu.supannAffectation }}</td>
    </tr>
    <tr>
        <td style="font-weight: bold">EDU PERSON AFFILIATION</td>
      <td>{{ individu.eduPersonAffiliation }}</td>
    </tr>
    <tr>
        <td style="font-weight: bold">DN</td>
      <td>{{ individu.dn }}</td>
    </tr>

         
          
  </tbody>
</table>
</br>
	


 
<button class="btn btn-large btn-primary" type="button"> <a style="color:white;text-decoration:none" <a href="{{ path('gestionEmails') }}">Gestion des emails </a></button>
<button class="btn btn-large btn-primary" type="button"> <a style="color:white;text-decoration:none" href="{{ path('recherche') }}">Nouvelle recherche </a></button>
{% endblock %}