{% load i18n %}
{% trans "Legend" %}
{% trans "General" %}
  • {% trans "(a)" %} {% trans "Absences" %} 0
  • {% trans "(u)" %} {% trans "Unexcused absences" %} 0
  • {% trans "Sum (e)" %} {% trans "Sum of excused absences" %} 0
  • {% trans "(e)" %} {% trans "Regular excused absences" %} 0
{% if excuse_types %}
{% trans "Excuse types" %}
    {% for excuse_type in excuse_types %}
  • ({{ excuse_type.short_name }}) {{ excuse_type.name }} 0
  • {% endfor %}
{% if excuse_types_not_absent %}
{% trans "Excuse types (not counted as absent)" %}
    {% for excuse_type in excuse_types_not_absent %}
  • ({{ excuse_type.short_name }}) {{ excuse_type.name }} 0
  • {% endfor %}
{% endif %}
{% endif %} {% if extra_marks %}
{% trans "Extra marks" %}
    {% for extra_mark in extra_marks %}
  • {{ extra_mark.short_name }} {{ extra_mark.name }} 0
  • {% endfor %}
{% endif %}