aboutsummaryrefslogtreecommitdiff
path: root/templates/group_list.html
blob: d8d7227887968a44a1f2bfc272e5ac98b5157362 (plain)
1
2
3
4
5
6
7
8
9
10
11
{% extends "index.html" %}
{% load dt_week %}

{% block body %}
      <h3><a href="{{ timetable.url }}">{{ timetable }}</a></h3>
      <ul>
	{% for group in groups %}
        <li><a class="text"{% if group.weeks is not None %} href="{% url "timetable" timetable.slug group.slug %}"{% endif %}>{{ group }}</a> &ndash; {% for week in group.weeks %}<a href="{% url "timetable" timetable.slug group.slug week.year week|dt_week %}">{{ week|dt_prettyprint }}</a> {% empty %}<em>aucun cours</em>{% endfor %}</li>
	{% endfor %}
      </ul>
{% endblock %}