{# -*- engine:django -*- #} {% extends "core/turnable.html" %} {% load bootstrap4 data_helpers font_awesome i18n staticfiles %} {% block bootstrap4_extra_head %} {{ block.super }} {% endblock %} {% block bootstrap4_title %}{% blocktrans %}Timetable{% endblocktrans %} - {{ block.super }}{% endblock %} {% block current_content %}
{% blocktrans %}Times{% endblocktrans %}
{% for num, times in periods.items %}
{{ num }}.
{{ times.0}}
-
{{ times.1 }}
{% endfor %}
{% for weekday, lesson_periods_day in lesson_periods.items %} {% include "chronos/tt_day.html" with weekday_name=weekdays|get_dict:weekday lesson_periods=lesson_periods_day %} {% endfor %}
{% endblock %}