{# Show short weekdays on tablets #}
{% for weekday in weekdays_short %}
{{ weekday.name }}
{% endfor %}
{% for row in timetable %}
{% if row.type == "period" %}
{% include "chronos/partials/period_time.html" with period=row.period periods=periods %}
{% endif %}
{% for col in row.cols %}
{# A lesson #}
{% if row.type == "period" %}
{% include "chronos/partials/elements.html" with elements=col %}
{% else %}
{% include "chronos/partials/supervision.html" with supervision=col %}
{% endif %}