{% extends "base.html" %} {% block title %}Schedule — {{ course.title or "Cold Call" }}{% endblock %} {% block body %}

← back

Class schedule

When class days are listed here, the student opt-out form only offers these dates. With no days listed, students can pick any date. Start times bound opt-out withdrawal: students can withdraw an opt-out until class begins; with no time recorded, withdrawal closes at the start of the class day.

{% set dmin = course.start_date.isoformat() if course.start_date else "" %} {% set dmax = course.end_date.isoformat() if course.end_date else "" %}

Add a range

{% for i, name in weekdays %} {% endfor %}

Add a single day

{% if days %}

Class days

{% for d in days %} {% endfor %}
{{ d.date.strftime("%a %b %-d, %Y") }} {% if d.start_time %}{{ d.start_time.strftime("%H:%M") }}{% endif %}
{% endif %} {% endblock %}