{% include 'partials/header.html' %}

Stundenplan {{ el }}

{% if smart %} {# Show if smart #} {# Toggle button to regular and smart plan badge #} {# Week select #}
{% else %} {# Show if regular #} slideshow SMART PLAN ANZEIGEN {% endif %}
{# Week days #}
{% for week_day in week_days %}
{{ week_day }}
{% endfor %}
{# Lessons #} {% for row, time in plan %}
{# Lesson number #} {{ time.number_format }} {# Time dimension of lesson #}
{{ time.start|date:"H:i" }}
{{ time.end|date:"H:i" }}
{% for col in row %} {# A lesson #}
{% include "timetable/lesson.html" %}
{% endfor %}
{% endfor %}
{% include 'partials/footer.html' %}