diff options
author | Alban Gruin | 2017-02-12 13:44:05 +0100 |
---|---|---|
committer | Alban Gruin | 2017-02-12 13:44:05 +0100 |
commit | a543aaa14957f390d2b640a264113b639c7d3194 (patch) | |
tree | 62bf0fdbd83717f3020dad2313dd1f4f4a9dcdce /templates | |
parent | 3d5d17475909a6b351fadf8bbdb0bf8dc8d8e928 (diff) | |
parent | 908ed3b4d0bc57131f6dafc663c6f7e098f0b7e1 (diff) |
Merge branch 'stable/0.y.z' into prod/pa1ch/0.y.zv0.6.0-pa1ch
Diffstat (limited to 'templates')
-rw-r--r-- | templates/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/index.html b/templates/index.html index cca2eaf..4db748d 100644 --- a/templates/index.html +++ b/templates/index.html @@ -62,7 +62,7 @@ li.course { <section id="{{ timetable.slug }}"> <h3><a href="{{ timetable.url }}">{{ timetable.name }}</a></h3> <ul>{% for group in groups %}{% if group.timetable.id == timetable.id %} - <li><a class="text" href="{% url "timetable" timetable.slug group.slug %}">{{ group.name }}</a> – {% for week in group.weeks %}<a href="{% url "timetable" timetable.slug group.slug week.year week|dt_week %}">{{ week|dt_prettyprint }}</a> {% endfor %}</li>{% endif %}{% endfor %} + <li><a class="text"{% if group.weeks is not None %} href="{% url "timetable" timetable.slug group.slug %}"{% endif %}>{{ group.name }}</a> – {% 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>{% endif %}{% endfor %} </ul> </section>{% endfor %}{% endblock %} </div> |