{% extends 'core/base_print.html' %} {% load data_helpers static i18n %} {% block extra_head %} {% endblock %} {% block content %}
{% trans "Timetable" %} {{ el }}
{# Show class teacher and deputy class teacher #} {% if type.value == "group" and el.owners.all %}

{% trans "Group teachers:" %} {% for teacher in el.owners.all %} {{ teacher.short_name }}{% if not forloop.last %},{% endif %} {% endfor %}

{% endif %}
{# Week days #}
{# 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 %}
{% endfor %}
{% endfor %}
{% endblock %}