aboutsummaryrefslogtreecommitdiff
path: root/templates/timetable.html
diff options
context:
space:
mode:
authorAlban Gruin2017-01-25 14:25:04 +0100
committerAlban Gruin2017-01-25 14:25:04 +0100
commita4a3aa91a9eacf0f67442d79d8aaee01b7a1256b (patch)
tree7926f34aba06cebf98d612dfc1273f8073d3b35f /templates/timetable.html
parenta98fcce79627994f397d457677082b9c5e1b6192 (diff)
Suppression du slug de l'emploi du temps dans les URLs ainsi que sa récupération manuelle inutile car
déjà référencée par le groupe
Diffstat (limited to 'templates/timetable.html')
-rw-r--r--templates/timetable.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/timetable.html b/templates/timetable.html
index 28f6005..9d05be6 100644
--- a/templates/timetable.html
+++ b/templates/timetable.html
@@ -1,9 +1,9 @@
{% extends "index.html" %}
-{% block title %}{{ timetable.name }} – {{ group.name }} – Semaine {{ week }} – {% endblock %}
+{% block title %}{{ group.timetable.name }} – {{ group.name }} – Semaine {{ week }} – {% endblock %}
{% block body %}
- <h2>{{ timetable.name }} &ndash; {{ group.name }} &ndash; Semaine {{ week }}</h2>
+ <h2>{{ group.timetable.name }} &ndash; {{ group.name }} &ndash; Semaine {{ week }}</h2>
<p>Dernière mise à jour le {{ last_update|date:"l j F o" }} à {{ last_update|date:"H:i" }}</p>{% for day in courses %}
<section>
<h3>{{ day.0.begin|date:"l j F o" }} &ndash; de {{ day.0.begin|date:"H:i" }} à {% with day|last as last %}{{ last.end|date:"H:i" }}{% endwith %}</h3>
@@ -11,4 +11,4 @@
<li class="course"><b>{{ course.name }}</b>, de {{ course.begin|date:"H:i" }} à {{ course.end|date:"H:i" }}{% if course.rooms.all|length > 0 %}<br /><em>Salle{% if course.rooms.all|length > 1 %}s{% endif %} {% for room in course.rooms.all %}{{ room }} {% endfor %}</em>{% endif %}</li>{% endfor %}
</ul>
</section>{% endfor %}
- <p><a class="subscribe" href="{% url "subscribe" timetable.slug year week group.slug %}">S'abonner à cet emploi du temps</a></p>{% endblock %}
+ <p><a class="subscribe" href="{% url "subscribe" group.slug year week %}">S'abonner à cet emploi du temps</a></p>{% endblock %}