2023-05-15 03:38:16 +02:00
|
|
|
{# grades.html #}
|
|
|
|
|
|
|
|
{% extends "layout/base.html" %}
|
|
|
|
|
|
|
|
{% block title %}Mes notes | Antinote{% endblock %}
|
|
|
|
|
|
|
|
{% block main %}
|
|
|
|
|
|
|
|
<h1>Mes notes</h1>
|
|
|
|
|
2023-05-15 05:15:34 +02:00
|
|
|
<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>
|
2023-05-15 03:38:16 +02:00
|
|
|
|
|
|
|
{% endblock %}
|