{# -*- engine:django -*- #} {% extends "core/base.html" %} {% load bootstrap4 data_helpers i18n staticfiles %} {% block bootstrap4_extra_head %} {{ block.super }} {% endblock %} {% block page_title %}Timetable{% endblock %} {% block content %}
{% csrf_token %}
{% 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 %}