{% extends 'base.html' %} {% load crispy_forms_tags %} {% load static %} {% block page_title %}Class Subject Allocations{% endblock page_title %} {% block content %}

Class Subject Allocations

View subject allocations for your assigned class streams.

{% if allocations %}
{% for allocation in allocations %} {% endfor %}
# Class Stream Subject Subject Teacher
{{ forloop.counter }}
{{ allocation.academic_class_stream }}
Allocated stream
{{ allocation.subject }}
{% if allocation.subject_teacher.staff_photo %} Teacher {% else %} Teacher {% endif %} {{ allocation.subject_teacher }}
{% else %}
{% endif %}
{% endblock %}