{% include 'partials/header.html' %} {% load copy_filter %} Stundenplan {{ el }} {# Show print button only if not on mobile #} print {% if smart %} {# Show if smart #} {# Toggle button to regular and smart plan badge #} SMART PLAN slideshow REGELPLAN ANZEIGEN {# Week select #} navigate_before {% for week in weeks %} KW {{ week.calendar_week }} ({{ week.first_day|date:"j.n" }}–{{ week.last_day|date:"j.n" }}) {% endfor %} {% for week in weeks %} KW {{ week.calendar_week }} ({{ week.first_day|date:"j.n.Y" }}–{{ week.last_day|date:"j.n.Y" }}) {% endfor %} {% for week in weeks %} KW {{ week.calendar_week }} ({{ week.first_day|date:"j.n" }}–{{ week.last_day|date:"j.n.Y" }}) {% endfor %} navigate_next {% else %} {# Show if regular #} slideshow SMART PLAN ANZEIGEN {% endif %} {% include "timetable/hintsinplan.html" %} {# show full timetable on tablets, laptops and pcs #} {# Week days #} {# Show short weekdays on tablets #} {% for day in short_week_days|deepcopy %} {{ day.0 }} {% if day.1 %} {{ day.1.0 }} {% endif %} {% endfor %} {# Show long weekdays elsewere #} {% for day in long_week_days|deepcopy %} {{ day.0.0 }} {% if day.1 %} {{ day.1.0 }} {% endif %} {% endfor %} {# Lessons #} {% for row, time in plan|deepcopy %} {# 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 %} {# show 5 seperate ones on mobiles #} {% for day in long_week_days|deepcopy %} {{ day.0.0 }} {% for row, time in plan|deepcopy %} {# Lesson number #} {{ time.number_format }} {# Time dimension of lesson #} {{ time.start|date:"H:i" }} {{ time.end|date:"H:i" }} {% for col in row|deepcopy %} {% if forloop.counter0 == day.0.1 %} {# A lesson #} {% include "timetable/lesson.html" %} {% endif %} {% endfor %} {% endfor %} {% endfor %} {% include 'partials/footer.html' %}