Ajout du style pour la page de connexion

This commit is contained in:
2023-05-15 05:15:34 +02:00
parent e97b1d1659
commit 38f24a3ec3
8 changed files with 96 additions and 21 deletions

View File

@ -8,15 +8,17 @@
<h1>Mes notes</h1>
<ul id="liste-notes">
<li>
<span class="section">Mathématiques</span>
<ul>
<li>12/20</li>
<li>15/20</li>
</ul>
</li>
<li>Philosophie</li>
</ul>
<table class="grade-report">
{% for matiere, notes in grades.items() %}
<tr><th colspan=3>{{ matiere }}</th></tr>
{% for note in notes %}
<tr>
<td>{{ note[1] }}</td>
<td>{{ note[4] }}/{{ note[5] }}</td>
<td>coeff. {{ note[3] }}</td>
</tr>
{% endfor %}
{% endfor %}
</table>
{% endblock %}