{% extends 'core/base_print.html' %} {% load data_helpers static i18n %} {% block extra_head %} {% endblock %} {% block page_title %} {% trans "Timetable" %} {{ el.short_name }} {% endblock %} {% block content %}
{# Week days #}
{% 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 %}
{% endfor %}
{% endfor %}
{% endblock %}