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

Reporte consolidado

{{ report.school_year.name }} · {{ report.section.name }} · {{ report.subject.name }}

VolverDescargar CSV
Logo institucional
REPÚBLICA BOLIVARIANA DE VENEZUELAMINISTERIO DEL PODER POPULAR PARA LA EDUCACIÓN{{ settings.institution_name }} · CÓDIGO {{ settings.institution_code }}COORDINACIÓN DE EVALUACIÓN

{{ 'REPORTE ANUAL DE CALIFICACIONES' if report.scope == 'annual' else 'REPORTE DE CALIFICACIONES POR LAPSO' }}

Año escolar{{ report.school_year.name }}
Sección{{ report.section.name }}
Asignatura{{ report.subject.name }}
Lapso{{ report.period or 'TOTAL ANUAL' }}
Matrícula{{ report.summary.students }}
Con calificaciones{{ report.summary.with_grades }}
Aprobados{{ report.summary.approved }}
Reprobados{{ report.summary.failed }}
Promedio del curso{{ report.summary.class_average if report.summary.class_average is not none else '-' }}
{% if report.scope == 'period' %}{% for column in report.columns %}{% endfor %}{% else %}{% for period in ['I Momento','II Momento','III Momento'] %}{% endfor %}{% endif %} {% for row in report.rows %}{% if report.scope == 'period' %}{% for score in row.scores %}{% endfor %}{% else %}{% for period in ['I Momento','II Momento','III Momento'] %}{% endfor %}{% endif %}{% else %}{% endfor %}
CédulaNombres y apellidos{{ column.label }}{{ period }}PromedioCondición
{{ row.student.list_number or loop.index }}{{ row.student.ci }}{{ row.student.full_name }}{{ score if score is not none else '-' }}{{ row.period_averages.get(period) if row.period_averages.get(period) is not none else '-' }}{{ row.average if row.average is not none else '-' }}{{ row.status }}
No hay matrícula o evaluaciones para los filtros seleccionados.
Docente de la asignatura
Coordinación de Evaluación

Reporte generado por el Sistema Institucional de Notas. Las notas definitivas contemplan la segunda forma de evaluación cuando fue aplicada.

{% endblock %}