{% extends 'base.html' %} {% load custom_filters %} {% block content %}
| Day/Time | {% for slot in time_slots %}{{ slot.start_time|time:"H:i" }} - {{ slot.end_time|time:"H:i" }} | {% endfor %}
|---|---|
| {{ weekday_name }} | {% for slot in time_slots %}
{% for entry in timetable_data|dict_key:weekday_code|dict_key:slot.id %}
{{ entry.subject.name }}
{{ entry.class_stream }}
{% with row=attendance_map|dict_key:entry.id %}
{% if row %}
{% endif %}
{% endwith %}
|
{% endfor %}