forked from ScoDoc/ScoDoc
36 lines
676 B
Plaintext
36 lines
676 B
Plaintext
|
<h2>Présence lors de l'évaluation {{eval.title}} </h2>
|
||
|
<h3>Réalisé le {{eval.jour}} de {{eval.heure_debut}} à {{eval.heure_fin}}</h3>
|
||
|
<table>
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>
|
||
|
Nom
|
||
|
</th>
|
||
|
<th>
|
||
|
Assiduité
|
||
|
</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
|
||
|
<tbody>
|
||
|
{% for etud in etudiants %}
|
||
|
<tr>
|
||
|
<td>
|
||
|
{{etud.nom | safe}}
|
||
|
</td>
|
||
|
<td style="text-align: center;">
|
||
|
{{etud.etat}}
|
||
|
</td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
</tbody>
|
||
|
|
||
|
</table>
|
||
|
|
||
|
<style>
|
||
|
tr,
|
||
|
td {
|
||
|
background-color: #FFFFFF;
|
||
|
|
||
|
}
|
||
|
</style>
|