{# -*- engine:django -*- #} {% extends 'core/base_print.html' %} {% load i18n static %} {% block extra_head %} {% endblock %} {% block browser_title %}{% blocktrans %}Print: Substitutions{% endblocktrans %}{% endblock %} {% block page_title %}{% blocktrans %}Substitutions{% endblocktrans %}{% endblock %} {% block content %} {% for day, c in days.items %}

{{ c.day|date:"l" }} {{ c.day|date:"SHORT_DATE_FORMAT" }}

{% include "core/partials/announcements.html" with announcements=announcements show_recipients=1 %} {% include "chronos/partials/headerbox.html" with affected_teachers=c.affected_teachers affected_groups=c.affected_groups absent_teachers=c.absent_teachers absent_groups=c.absent_groups print=1 %} {% if not c.substitutions %} {% endif %} {% for item in c.substitutions %} {% ifchanged item.el.lesson_period.lesson.groups_to_show_names %} {% endifchanged %} {% endfor %}
people access_time {% blocktrans %}Teachers{% endblocktrans %} {% blocktrans %}Subject{% endblocktrans %} {% blocktrans %}Room{% endblocktrans %} {% blocktrans %}Notes{% endblocktrans %}

{% blocktrans %}No substitutions available.{% endblocktrans %}

{% include "chronos/partials/subs/groups.html" with type=item.type el=item.el %} {% include "chronos/partials/subs/period.html" with type=item.type el=item.el item=item %} {% include "chronos/partials/subs/teachers.html" with type=item.type el=item.el %} {% include "chronos/partials/subs/subject.html" with type=item.type el=item.el %} {% include "chronos/partials/subs/room.html" with type=item.type el=item.el %} {% include "chronos/partials/subs/badge.html" with sub=item.el %} {% include "chronos/partials/subs/comment.html" with el=item.el %}
{% endfor %} {% endblock %}