diff options
author | Alban Gruin | 2018-04-25 21:26:03 +0200 |
---|---|---|
committer | Alban Gruin | 2018-04-25 21:26:03 +0200 |
commit | 54c5dbb98293acea9b470808e5a35e99c004f265 (patch) | |
tree | 7fb350d07e2f2a4d687b00fd034e638bd02f8526 /templates/group_list.html | |
parent | 772caa72ce7f80bfeb5fbb1d05b57838dafd48c3 (diff) | |
parent | 5488a93bf2e04d2f19e287186011dcbb436a238b (diff) |
Merge branch 'stable/0.13.z' into prod/pa1ch/0.y.z
Diffstat (limited to 'templates/group_list.html')
-rw-r--r-- | templates/group_list.html | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/templates/group_list.html b/templates/group_list.html index f21b2b1..d88f144 100644 --- a/templates/group_list.html +++ b/templates/group_list.html @@ -2,12 +2,15 @@ {% load dt_week %} {% block title %}{{ timetable }} – {% endblock %} +{% block pagetitle %}<a href="{{ timetable.source.url }}">{{ timetable }}</a>{% endblock %} -{% 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> — {% 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> {% if not forloop.last %}– {% endif %}{% empty %}<em>aucun cours dans le mois à venir</em>{% endfor %}</li> - {% endfor %} - </ul> +{% block lelement %}<a class="text"{% if element.weeks is not None %} href="{% block gurl %}{% url "timetable" timetable.year.slug timetable.slug element.slug %}{% endblock %}"{% endif %}>{{ element }}</a> — +{% for week in element.weeks %} + <a href="{% block wurl %}{% url "timetable" timetable.year.slug timetable.slug element.slug week.year week|dt_week %}{% endblock %}">{{ week|date:"Y/m/d" }}</a> {% if not forloop.last %}– {% endif %} +{% empty %} + <em>aucun cours dans le mois à venir</em> +{% endfor %} {% endblock %} + +{% block navigation %}<a href="{% url "mentions" timetable.year.slug %}">Retour à la liste des mentions</a> – +<a href="{% url "groups-all" timetable.year.slug timetable.slug %}">Tous les groupes</a>{% endblock %} |