24 lines
537 B
HTML
24 lines
537 B
HTML
{# 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>
|
|
|
|
{% endblock %} |