{% extends 'core/base.html' %} {% block content %}

Mein Plan {{ el }} SMART PLAN

Wochenplan anzeigen
{% include "timetable/hintsinplan.html" %}
{# Date #}
{% include "timetable/datepicker.html" %} {% if holiday %} {{ holiday.0 }} {% endif %}
{# 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 %} {% if forloop.counter0 == week_day %}
{# A lesson #} {% include "timetable/lesson.html" %}
{% endif %} {% endfor %}
{% endfor %}
{% endblock %}