{% load i18n %} {% if affected_teachers or affected_groups or absent_teachers or absent_groups %}
{% if absent_teachers %}
{% trans "Absent teachers" %}
{% include "chronos/partials/teachers.html" with teachers=absent_teachers %}
{% endif %} {% if absent_groups %}
{% trans "Absent groups" %}
{% include "chronos/partials/groups.html" with groups=absent_groups %}
{% endif %} {% if affected_teachers %}
{% trans "Affected teachers" %}
{% include "chronos/partials/teachers.html" with teachers=affected_teachers %}
{% endif %} {% if affected_groups %}
{% trans "Affected groups" %}
{% include "chronos/partials/groups.html" with groups=affected_groups %}
{% endif %}
{% if print %}
{% endif %} {% endif %}