{% 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 %}

{% trans 'Class register' %}

{{ school_term }}

({{ school_term.date_start }}–{{ school_term.date_end }})

{% static "img/aleksis-banner.svg" as aleksis_banner %} {{ SITE_PREFERENCES.general__title }} – Logo

{{ group.name }}

{% trans 'Owners' %}: {{ group.owners.all|join:', ' }}

{% trans 'Printed on' %} {{ today }}


{% blocktrans %} This printout is intended for archival purposes. The main copy of the class register is stored in the AlekSIS School Information System. {% endblocktrans %}

{% blocktrans %} Copies of the class register, both digital and as printout, must only be kept inside the school and/or on devices authorised by the school. {% endblocktrans %}

{% blocktrans %} The owner of the group and the headteacher confirm the above, as well as the correctness of this printout. {% endblocktrans %}

{% trans 'Owners' %}
{% trans 'Headteacher' %}
 

{% trans 'Persons in group' %} {{ group.name }}

{% for person in persons %} {% endfor %}
{% trans 'No.' %} {% trans 'Last name' %} {% trans 'First name' %} {% trans 'Sex' %} {% trans 'Date of birth' %}
{{ forloop.counter }} {{ person.last_name }} {{ person.first_name }} {{ person.get_sex_display }} {{ person.date_of_birth }}
 
{% for week in weeks %}

{% trans 'Week' %} {{ week.week }}: {{ week.0 }}–{{ week.6 }}

{% with documentations_by_week|get_dict:week.week as documentations %} {% for documentation in documentations %} {% endfor %} {% endwith %}
{% trans 'Subj.' %} {% trans 'Lesson topic' %} {% trans 'Homework' %} {% trans 'Notes' %}
{% include "chronos/partials/subject.html" with subject=documentation.course.subject %} {{ documentation.topic }} {{ documentation.homework }} {{ documentation.group_note }}
 
{% endfor %} {% endblock %}