{% extends "base.html" %} {% block content %}

Secciones

Organización de secciones y matrículas por año escolar.

Año consultado{{ selected_year.name }}
Estado{{ selected_year.status|upper }}
Secciones{{ sections|length }}
Matrícula{{ sections|sum(attribute=1) }}
{% if user.role in ['admin','director','evaluacion'] %}

Crear o habilitar una sección

{% endif %}
{% for section, count in sections %}
{{ section.name }}{{ count }} estudiantes {% if user.role in ['admin','director','evaluacion'] %}
Editar sección
{% endif %}
{% else %}

No hay secciones configuradas para este año escolar.

{% endfor %}
{% endblock %}