{% extends "base.html" %} {% load static %} {% block content %} {% include "includes/sidenav.html" %}
Back to Dashboard

{{ course.title }} - Content Management

Organize your course content by adding, editing, or reordering sections and lectures.

Course Sections
{% for section in course.sections.all %}
{{ section.order }}. {{ section.title }}
{% if section.description %}

{{ section.description }}

{% endif %}
{% for lecture in section.lectures.all %}
{{ lecture.order }}. {{ lecture.title }}
{% if lecture.description %}

{{ lecture.description }}

{% endif %} {{ lecture.get_content_type_display }} {% if lecture.duration %}• {{ lecture.duration }} min{% endif %}
{% empty %}

No lectures in this section yet.

{% endfor %}
{% empty %}

No sections available. Create your first section to get started.

{% endfor %}
{% block extra_js %} {% endblock %} {% endblock content %}