aboutsummaryrefslogtreecommitdiff
path: root/templates/mention_list.html
blob: 3c455aff7c7f94f17b9ffe3b2c5d8a5123580b44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% extends "index.html" %}

{% block title %}{{ year }} – {% endblock %}

{% block body %}
      <h3>Choisissez votre mention</h3>
      <ul>
{% for timetable in timetables %}
        <li><a href="#">{{ timetable.name }}</a></li>
{% empty %}
        <p>Aucun emploi du temps à afficher</p>
{% endfor %}
      </ul>
{% endblock %}