{# Teacher or room > Display groups #} {% if type.value == "teacher" or type.value == "room" %} {% include "chronos/partials/groups.html" with groups=event.groups.all %} {% endif %} {# Class or room > Display teachers #} {% if type.value == "room" or type.value == "group" %} {% include "chronos/partials/teachers.html" with teachers=event.teachers.all %} {% endif %} {# Teacher or class > Display rooms #} {% if type.value == "teacher" or type.value == "group" %} {% for room in event.rooms.all %} {% include "chronos/partials/room.html" with room=room %}{% if not forloop.last %},{% endif %} {% endfor %} {% endif %} {% if type.value == "teacher" and not event.groups.all and not event.rooms.all and event.title %} {{ event.title }} {% elif type.value == "group" and not event.teachers.all and not event.groups.all and event.title %} {{ event.title }} {% elif type.value == "room" and not event.teachers.all and not event.groups.all and event.title %} {{ event.title }} {% elif event.title %}
{{ event.title }} {% endif %}