{% extends "base.html" %} {% block title %}{{ saved_name }} - Timetable Generator{% endblock %} {% block content %}
Some teachers are scheduled in multiple sections at the same time. This may be due to changes in teacher or subject data since this timetable was saved. Use Edit Mode to resolve these conflicts or Regenerate to create a new conflict-free timetable.
| 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 %}