Ajout du style pour la page de connexion
This commit is contained in:
@ -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 %}
|
Reference in New Issue
Block a user