{% extends 'base.html' %} {% load static %} {% block title %}Report Cards — Rapha-Bethel BNPS{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Report Cards

Manage marks, compute averages, generate PDFs

Classes
{{ total_classes }}
Active Students
{{ total_students }}
Cards Created
{{ total_cards }}
PDFs Generated
{{ total_pdfs }}
{% if not selected_term %}
Select a term above to see report card status per class. {% if not terms %} Create your first academic term → {% endif %}
{% endif %} {% if class_data %}
{% for item in class_data %}
{{ item.cls.name }}
{{ item.cls.code }}
{{ item.report_type_display }}
{{ item.active_students }}
Students
{{ item.cards_created }}
Cards
{{ item.students_with_marks }}
Marked
{{ item.cards_with_pdf }}
PDFs
{% if item.active_students > 0 %}
Marks entered {{ item.progress_pct }}%
{% endif %}
Initialised Marks entered PDFs ready
{% if selected_term %} {% else %}
Select a term to manage marks
{% endif %}
{% endfor %}
{% else %}
No classes found

Make sure classes have been created and students assigned.

{% endif %}
{% endblock %}