{% load i18n %}
{% trans "Legend" %}
{% trans "General" %}
  • (a) {% trans "Absences" %} 0
  • (u) {% trans "Unexcused absences" %} 0
  • (e) {% trans "Excused absences" %} 0
{% if excuse_types %}
{% trans "Excuse types" %}
    {% for excuse_type in excuse_types %}
  • ({{ excuse_type.short_name }}) {{ excuse_type.name }} 0
  • {% endfor %}
{% endif %} {% if extra_marks %}
{% trans "Extra marks" %}
    {% for extra_mark in extra_marks %}
  • {{ extra_mark.short_name }} {{ extra_mark.name }} 0
  • {% endfor %}
{% endif %}