{% extends "base.html" %} {% block title %}Lectures — CLM Recordings{% endblock %} {% block content %}

Lectures

{% if snapshot.armed_topic %}
Armed: {{ snapshot.armed_topic.course_slug }} / {{ snapshot.armed_topic.section_name }} / {{ snapshot.armed_topic.topic_name }}
{% endif %} {% if error %}
{{ error }}
{% endif %} {% for section in sections %}

{{ section.name }}

{% for topic in section.topics %} {% endfor %}
{{ topic.name }}
{% endfor %} {% if not sections and not error %}

No sections found in the course spec.

{% endif %} {% endblock %}