{% if type == "substitution" %} {% if el.cancelled or el.cancelled_for_teachers %} {# Canceled lesson: no room #} {% elif el.room and el.lesson_period.room %} {# New and old room available #} {{ el.lesson_period.room.short_name }} {{ el.room.short_name }} {% elif el.room and not el.lesson_period.room %} {# Only new room available #} {{ el.room.short_name }} {% elif not el.room and not el.lesson_period.room %} {# Nothing to view #} {% else %} {# Only old room available #} {{ el.lesson_period.room.short_name }} {% endif %} {% elif type == "supervision_substitution" %} {% with supervision=el.supervision %} {{ supervision.area.short_name }} {% endwith %} {% endif %}