{% extends "base.html" %} {% block title %}Generated Timetables - Timetable Generator{% endblock %} {% block content %}
Some teachers are scheduled in multiple sections at the same time. Use Edit Mode to resolve these conflicts manually.
| Day | {% for period in timetable.periods %}{{ period }} | {% endfor %}|
|---|---|---|
| {{ timetable.days[day_index] }} | {% set skip_cells = [] %} {% for period_index in range(8) %} {% if period_index not in skip_cells %} {% set subject = timetable.schedule[day_index][period_index] %} {% if subject %} 1 %}colspan="{{ subject.colspan }}"{% endif %}>
{% if subject.is_lunch %}
LUNCH
Break Time
{{ subject.name }}
{{ subject.teacher }}
{{ subject.block_size }}-Period Lab Block
{{ subject.name }}
{{ subject.teacher }}
{% if subject.is_lab %}
Lab
{% endif %}
|
{% else %}
Free
|
{% endif %}
{% endif %}
{% endfor %}