{# -*- engine:django -*- #} {% extends 'core/base.html' %} {% load i18n static %} {% block extra_head %} {% endblock %} {% block browser_title %}{% blocktrans %}Substitutions{% endblocktrans %}{% endblock %} {% block no_page_title %}{% endblock %} {% block content %}

{% trans "Substitutions" %}

{% include "chronos/partials/headerbox.html" %} {% include "core/partials/announcements.html" with announcements=announcements show_recipients=1 %}
{% include "chronos/partials/datepicker.html" %}

{{ day|date:"l" }}, {{ day }}

{% if not substitutions %} {% endif %} {% for item in substitutions %} {# TODO: Extend support for purple (events) #} {% endfor %}
people access_time {% trans "Teacher" %} {% trans "Subject" %} {% trans "Room" %} {% trans "Notes" %}

{% 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 %} {% include "chronos/partials/subs/badge.html" with sub=item.el %}
{% endblock %}