blob: 71cfaacbe31c80f4f22f06bc14e93ba2212193d6 (
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>{{ year }} – Choisissez votre mention</h3>
<ul>
{% for timetable in timetables %}
<li><a href="{% url "groups" year.slug timetable.slug %}">{{ timetable }}</a></li>
{% empty %}
<p>Aucun emploi du temps à afficher</p>
{% endfor %}
</ul>
{% endblock %}
|