{% extends "base.html" %} {# Wagtail LMS Course Page Template STYLING: This template uses CSS classes from 'wagtail_lms/css/course.css'. Include the stylesheet in your base template's section: {% load static wagtailcore_tags %} Alternatively, override these templates with your own (Bootstrap, Tailwind, etc.). See docs: https://github.com/dr-rompecabezas/wagtail-lms/blob/main/docs/template_customization.md #} {% load wagtailcore_tags %} {% block content %}

{{ page.title }}

{% if page.description %}
{{ page.description|richtext }}
{% endif %} {% if lesson_pages %}

H5P Lessons

    {% for lesson in lesson_pages %}
  1. {{ lesson.title }} {% if lesson.pk in completed_lesson_ids %}{% endif %}
  2. {% endfor %}
{% endif %} {% if scorm_lesson_pages %}

SCORM Lessons

    {% for lesson in scorm_lesson_pages %}
  1. {{ lesson.title }} {% if lesson.pk in completed_scorm_lesson_ids %}{% endif %}
  2. {% endfor %}
{% endif %} {% if lesson_pages or scorm_lesson_pages %} {% if user.is_authenticated %} {% if enrollment %}
Enrolled: {{ enrollment.enrolled_at|date:"M d, Y" }} {% if enrollment.completed_at %}
Completed: {{ enrollment.completed_at|date:"M d, Y" }} {% endif %}
{% else %} {% endif %} {% else %}
Please login to enroll in this course.
{% endif %} {% endif %} {% if not lesson_pages and not scorm_lesson_pages %}
This course doesn't have any content assigned yet.
{% endif %}
{% endblock %}