antinote/app/templates/grades.html

22 lines
364 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>
<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>
{% endblock %}