aboutsummaryrefslogtreecommitdiff
path: root/templates/group_list.html
blob: 253086525d61ff38e5c8cb5e22b9afac056b4c6c (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.year.slug timetable.slug group.slug %}"{% endif %}>{{ group }}</a> &ndash; {% for week in group.weeks %}<a href="{% url "timetable" timetable.year.slug timetable.slug group.slug week.year week|dt_week %}">{{ week|dt_prettyprint }}</a> {% empty %}<em>aucun cours</em>{% endfor %}</li>
	{% endfor %}
      </ul>
{% endblock %}