{% 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.

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") }}
{% endif %} {% endblock %}