{% extends 'base.html' %} {% load static %} {% block title %}Enter Marks — {{ cls.name }} Term {{ term.term }} — Rapha-Bethel BNPS{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Enter Marks — {{ cls.name }}

Term {{ term.term }}  ·  {{ term.academic_year }}  ·  {{ student_count }} student{{ student_count|pluralize }}  ·  {{ rtype|upper }}

{% if not rc_initialised %}
{% csrf_token %}
Report cards not yet created for this class/term — initialise first. {% else %} {{ rc_count }} report card{{ rc_count|pluralize }} initialised
{% csrf_token %}
Bulk PDF (all students) {% endif %}
{% if student_rows %}
{% for group in subject_groups %} {% endfor %} {% for group in subject_groups %} {% for subj in group.subjects %} {% for mn in month_nums %} {% endfor %} {% endfor %} {% endfor %} {% for row in student_rows %} {% for cell in row.cells %} {% for score_item in cell.scores %} {% endfor %} {% endfor %} {% endfor %}
Student {# colspan = subjects × 3 months — computed in JS #} {{ group.domain }}
{% if forloop.first %}
{{ subj.sub_activity|truncatechars:12 }}
{% endif %}
M{{ mn }}
{{ row.student.last_name|upper }}, {{ row.student.first_name }}
{{ row.student.student_id }}
{% else %}
No active students in this class

Assign students to {{ cls.name }} first.

{% endif %}
{% endblock %} {% block extra_js %} {% for group in subject_groups %}
{% endfor %} {% endblock %}