22 lines
364 B
HTML
22 lines
364 B
HTML
{# 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 %} |