Ajout liste des apprentis inscits à un atelier pour question 13

This commit is contained in:
Zakarya BENJABALLAH 2023-02-09 11:47:04 +01:00
parent 6293d83802
commit b8be103298
1 changed files with 10 additions and 0 deletions

View File

@ -23,6 +23,16 @@
<th>Email instructeur</th> <th>Email instructeur</th>
<td>{{ atelier.instructeur.email }}</td> <td>{{ atelier.instructeur.email }}</td>
</tr> </tr>
<tr>
<th>Elèves inscrits</th>
<td>
<ul>
{% for eleve in atelier.eleves %}
<li>{{ eleve.prenom }} {{ eleve.nom }} - {{ eleve.email }}</li>
{% endfor %}
</ul>
</td>
</tr>
</tbody> </tbody>
</table> </table>