{% extends "base.html" %} {% load static %} {% block page_title %}Class Subject Allocation{% endblock page_title %} {% block content %}

Class Subject Allocation

{% if can_manage %} Copy {% else %} View Only {% endif %}
{% if selected_stream %}

{{ selected_stream.academic_class.Class.code }}{{ selected_stream.stream.stream }} {{ selected_stream.academic_class.academic_year.academic_year }} - Term {{ selected_stream.academic_class.term.term }}

{% if allocations %}
{% for allocation in allocations %}

{{ allocation.subject.name }}

Teacher: {{ allocation.subject_teacher }}

{% if can_manage %} {% endif %}
{% endfor %}
{% else %}
No subjects allocated yet. {% if can_manage %}Click "Allocate Subject" to begin.{% endif %}
{% endif %}

Class Summary

Class Stream: {{ selected_stream.academic_class.Class.code }}{{ selected_stream.stream.stream }}

Class Teacher: {{ class_teacher_name }}

Total Students: {{ total_students }}

Subjects Allocated: {{ subjects_allocated_count }}

{% else %}
Select Academic Year, Term, and Class Stream to view allocations.
{% endif %} {% if can_manage %} {% endif %} {{ teacher_stats|json_script:"teacher-stats-data" }} {% endblock %}