antinote/app/templates/grades.html

24 lines
537 B
HTML
Raw Normal View History

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>
<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 %}