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

Planificaciones por período

La planificación es obligatoria antes de configurar una evaluación.

{% if user.role in ['admin','director','evaluacion'] %}Configurar períodos{% endif %}
{% if user.role == 'docente' %}

Cargar planificación

{% endif %}
{% for p in plannings %} {% else %}{% endfor %}
DocenteSecciónAsignaturaPeríodoCargadaEstado
{{ p.teacher.full_name }}{{ p.section.name }}{{ p.subject.name }}{{ p.period }}{{ p.submitted_at }}CerradaVer
No hay planificaciones cargadas.
{% if user.role == 'docente' %}

Control por asignación

{% for p in period_names %}{% endfor %} {% for a in assignments %} {% for period in period_names %} {% set item = planning_map.get((a.teacher_id, a.section_id, a.subject_id, period)) %} {% endfor %} {% endfor %}
Sección / asignatura{{ p }}
{{ a.section.name }}
{{ a.subject.name }}
{% if item %}Cargada{% else %}Pendiente{% endif %}
{% endif %} {% endblock %}