{% extends 'base_dashboard.html' %} {% block title %}{{ action|default:"Add" }} Lesson — Online LMS{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{{ action|default:"Add" }} Lesson

Add content, media, and meeting details for this lesson

Back to Course
{{ module.course.title }}
Module: {{ module.title }}
{% csrf_token %} {% if form.non_field_errors %}
{% for error in form.non_field_errors %}
{{ error }}
{% endfor %}
{% endif %}
Basic Information
{{ form.title }} {% if form.title.errors %}
{{ form.title.errors.0 }}
{% endif %}
{{ form.order }} {% if form.order.errors %}
{{ form.order.errors.0 }}
{% endif %}
Lower numbers appear first.
{{ form.is_preview }}
Non-enrolled visitors can view this lesson
Lesson Content
{{ form.content }} {% if form.content.errors %}
{{ form.content.errors.0 }}
{% endif %}
Supports plain text. Shown below the lesson video.
Media & Files
{{ form.video_url }} {% if form.video_url.errors %}
{{ form.video_url.errors.0 }}
{% endif %}
{{ form.video_file }} {% if form.video_file.errors %}
{{ form.video_file.errors.0 }}
{% endif %}
{{ form.attachment }} {% if form.attachment.errors %}
{{ form.attachment.errors.0 }}
{% endif %}
Cancel
Online Meeting
Zoom, Google Meet, or Microsoft Teams
{{ form.meeting_link }} {% if form.meeting_link.errors %}
{{ form.meeting_link.errors.0 }}
{% endif %}
Paste your invite link here.
{{ form.meeting_id }} {% if form.meeting_id.errors %}
{{ form.meeting_id.errors.0 }}
{% endif %}
{{ form.meeting_password }} {% if form.meeting_password.errors %}
{{ form.meeting_password.errors.0 }}
{% endif %}
Tips
  • Use a video URL or upload a file, not both.
  • Enable Free Preview for introductory lessons.
  • Set Order 0 for the first lesson in a module.
  • Meeting details are only shown to enrolled students.
{% endblock %}