{% extends "base.html" %} {% block title %}BVplan{% endblock %} {% block head %} {% endblock %} {% block body %}

BVplan

dergrimm.net
{{ data.tenant }}, {{ data.schoolyear }}
Stand: {{ data.queried_at }}
Vertretungsplan (offline): {{ data.last_import_time }}
{% for subst in data.substitutions %} {% endfor %}
{{ data.date }}, Woche {{ data.week_type }}
Stunde Klasse(n) (Fach) Fach Vertreter (Raum) Raum Text
{{ subst.period }} {{ subst.classes|join(", ") }} {% match subst.prev_subject %} {% when Some with (x) %} {{ x }} {% when None %} --- {% endmatch %} {% match subst.subject %} {% when Some with (x) %} {{ x }} {% when None %} --- {% endmatch %} {% match subst.teachers %} {% when Some with (x) %} {{ x|join(", ") }} {% when None %} --- {% endmatch %} {% if subst.prev_rooms.is_empty() %} --- {% else %} {{ subst.prev_rooms|join(", ") }} {% endif %} {% if subst.rooms.is_empty() %} --- {% else %} {{ subst.rooms|join(", ") }} {% endif %} {% match subst.text %} {% when Some with (x) %} {{ x }} {% when None %} {% endmatch %}
{% endblock %}