Bonjour à tous et toutes,
Mon problème est le suivant, je suis nouveau avec symfony et twig, je viens de réaliser un tableau et j'aimerais intégrer un lien hypertext en fin de chacune des lignes de ce tableau.
Seulement je ne sais pas comment récupérer l'id de la ligne qui aura été concerné par le hypertext, et je ne sais pas non plus comment le passer en paramètre au path()
Voici mon code twig :
Le 4 ça a été une essai en dur hein . sinon j'ai cette erreur quand je le tente =>
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 {% extends 'base.html.twig' %} {% block body %} {{ parent() }} <br/> <div class="table-responsive"> <table class="table table-striped table-dark"> <thead> <tr> <th scope="col">#</th> <th scope="col">Email</th> <th scope="col">Nom Complet</th> <th scope="col">Actions</th> </tr> <thead> <tbody> {% for client in listClients %} <tr> <th scope="row">{{ client.id }}</th> <td>{{ client.email }}</td> <td>{{ client.nomComplet }}</td> <td><a href={{ path('user_delete', {'id': '4' }) }}>Supprimer</a></td> </tr> {% else %} <tr> <th>Aucun utilisateur en base de données</th> </tr> {% endfor %} <tbody> </table> </div> {% endblock %}
Help me plz.
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2App\Entity\User object not found by the @ParamConverter annotation.
Partager