aboutsummaryrefslogtreecommitdiff
path: root/templates/mention_list.html
blob: 142a17a66a18593de9b71957ee69a3f061ccbd90 (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="{% url "groups" year timetable.slug %}">{{ timetable.name }}</a></li>
{% empty %}
        <p>Aucun emploi du temps à afficher</p>
{% endfor %}
      </ul>
{% endblock %}