{% extends 'base.html' %} {% load custom_filters %} {% block content %}

My Teaching Timetable

{% for slot in time_slots %} {% endfor %} {% for weekday_code, weekday_name in weekdays %} {% for slot in time_slots %} {% endfor %} {% endfor %}
Day/Time{{ slot.start_time|time:"H:i" }} - {{ slot.end_time|time:"H:i" }}
{{ weekday_name }} {% for entry in timetable_data|dict_key:weekday_code|dict_key:slot.id %}
{{ entry.subject.name }} {{ entry.class_stream }}
{{ entry.classroom.name|default:"TBD" }}
{% with row=attendance_map|dict_key:entry.id %} {% if row %}
{{ row.status_icon }} {{ row.status_label }}
{% endif %} {% endwith %}
{% empty %} Free {% endfor %}
Updates automatically as new classes are scheduled.
{% endblock %}