{% extends "core/base_print.html" %} {% load static i18n data_helpers week_helpers %} {% block page_title %} {% trans "Class register:" %} {{ group.name }} {% endblock %} {% block extra_head %} {% endblock %} {% block content %} {% if include_cover %} {% include "alsijil/partials/register_cover.html" %} {% endif %}
 
{% if include_abbreviations %} {% include "alsijil/partials/register_abbreviations.html" %} {% endif %}
 
{% if include_members_table %} {% include "alsijil/partials/register_members_table.html" %} {% endif %}
 
{% if include_teachers_and_subjects_table %} {% if group.courses %}

{% trans 'Teachers and lessons in group' %} {{ group.name }}

{% include "alsijil/partials/register_teachers_and_subjects_table.html" with groups=[group] only %}
 
{% endif %} {% if group.child_groups %}

{% trans 'Teachers and lessons in child groups' %}

{% include "alsijil/partials/register_teachers_and_subjects_table.html" with groups=group.child_groups only}
 
{% endif %} {% endif %} {% if include_person_overviews %} {% for person in members %} {% include "alsijil/partials/person_overview.html with person=person only %}
 
{% endfor %} {% endif %} {% if include_coursebook %} {% include "alsijil/partials/register_coursebook.html" %} {% endif %} {% endblock %}