<!DOCTYPE html><html lang="fr"><head> <meta charset="UTF-16"> <title>Fiche Séance</title> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,600,700" /> <style> * { font-family: 'Roboto'; } table { border-collapse: collapse; } th, td { border: 1px solid black; padding: 15px; } th { background-color: #cccccc; } tr:first-child td:nth-child(1), .mytable tr:first-child td:nth-child(2) { border:1px transparent; } </style></head><body ><div id="bloc"><table style="width: 100%"> <tr > <th style="width: 10%; border-radius: 25px 0 0 0;border: none" rowspan="2"> Séquence <br> Séance </th> <th style="width: 60% ; border-top: none" colspan="2" rowspan="2"> <h3><i>{{ seance.refSequence.refThemeSequence }} - {{ seance.refSequence.titre }}</i><br>{{ seance.titre }}</h3> </th> <th style="width: 15%; border-top: none "> Séance : {{ seance.positionSeance }} / {{ seance.refSequence.refSeances|length }} </th> <th style="width: 15%; border-radius: 0 25px 0 0;border: none" rowspan="2"> <u>Niveau :</u><br> {{ seance.refSequence.refFiliere }} </th> </tr> <tr> <th style="">Durée : {{ seance.duree }} h</th> </tr> <tr> <td colspan="4"><u>Objectif :</u> {{ seance.refSequence.attendu }}</td> <td><u>Etape :</u> {{ seance.etape }}</td> </tr> <tr> <td colspan="4"><u>Objectif de la séance :</u> {{ seance.objectifIntermediaire }}</td> <td rowspan="3"> <u>Matériel :</u><br> {{ seance.ressourcesFournies }} <br><u>Organisation :</u> {{ seance.organisation }} </td> </tr> <tr> <td colspan="4"><u>Compétences :</u> {{ seance.refSequence.refCompetence|join(", ") }}</td> </tr> <tr> <td colspan="4"><u>Savoir Associés :</u> {{ seance.refSequence.refSavoirTechnologique|join(", ") }}</td> </tr></table></div><br><div id="bloc"><table style="width: 100%" > <tr style=""> <th style="width: 5% ; border: none ;border-radius: 25px 0 0 0" rowspan="2">Phase</th> <th style="width: 5% ; border-top: none" rowspan="2">Durée</th> <th style="width: 40% ; border-top: none" rowspan="2">Déroulement</th> <th style="width: 60% ; border-top: none" colspan="2">Activités</th> </tr> <tr> <th style="width: 30%" >Eleve</th> <th style="width: 30%" >Professeur</th> </tr> {% for seance_detail in seance.refSeancesDetails %} <tr> <td>{{ seance_detail.phase }}</td> <td>{{ seance_detail.duree }} min</td> <td>{{ seance_detail.deroulement }}</td> <td>{{ seance_detail.activiteEleve }}</td> <td>{{ seance_detail.activiteProf }}</td> </tr> {% endfor %}</table></div><h4>Bilan de Séance :</h4><p></p></body></html>