{% extends "base.html" %} {% block title %}Teacher Timetable{% endblock %} {% block page_title %}Teacher Timetable View{% endblock %} {% set active = "teacher-tt" %} {% block topbar_actions %} {% if selected_teacher %} Export PDF {% endif %} {% endblock %} {% block content %}
| Day | {% for p in periods %} {% if p in break_periods %}Break | {% else %}P{{ p }} | {% endif %} {% endfor %}|
|---|---|---|---|
| {{ day }} | {% for p in periods %} {% set cell = grid.get((day, p), {}) %} {% if p in break_periods %}☕ | {% elif cell %}
{{ cell.subj_name }}
Gr.{{ cell.grade }}-{{ cell.section }}
|
{% else %}
Free |
{% endif %}
{% endfor %}
{{ total|length }} teaching periods per week