Sections and Lessons
{% for section in course.sections.all %}
{{ section.title }}
(Order: {{ section.order }})
{% for lesson in section.lessons.all %}
-
{{ lesson.title }}
View
{% empty %}
- No lessons in this section yet.
{% endfor %}
Create Lesson in "{{ section.title }}"
{% empty %}
No sections available yet.
{% endfor %}