diff --git a/biscuit/apps/chronos/templates/chronos/tt_week.html b/biscuit/apps/chronos/templates/chronos/tt_week.html
index f9f9a563648d75b385a54055badc45a9bdbef0d0..17a92d5d3c531989b8e1ead20bb7861f475fafe6 100644
--- a/biscuit/apps/chronos/templates/chronos/tt_week.html
+++ b/biscuit/apps/chronos/templates/chronos/tt_week.html
@@ -5,5 +5,7 @@
 {% block page_title %}Timetable{% endblock %}
 
 {% block content %}
-{% include "chronos/tt_day.html" %}
+ {% for weekday, lesson_periods_day in lesson_periods.items %}
+  {% include "chronos/tt_day.html" with lesson_periods=lesson_periods_day %}
+ {% endfor %}
 {% endblock %}