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

Stundenplan {{ el }}

{# Show class teacher and deputy class teacher #} {% if type == 2 and el.teachers %}
Klassenlehrkräfte: {% for teacher in el.teachers %} {{ teacher.shortcode }}{% if not forloop.last %},{% endif %} {% endfor %}
{% endif %}
{# Show print button only if not on mobile #}
{% if smart %} {# Show if smart #} {# Toggle button to regular and smart plan badge #} {# Week select #}
{% 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 }} {% if day.1 %} {{ day.1.0 }} {% endif %}  
{% 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' %}