You have opted to be notified for this course. You will receive an email when the course becomes available.
{% if get_students(course.name) | length %}
{% set initial_members = get_initial_members(course.name) %}
{% for member in initial_members %}
{% if initial_members | length > 1 and loop.index == 1 %}
{% endif %}
{{ widgets.Avatar(member=member, avatar_class="avatar-small") }}
{% if initial_members | length > 1 and loop.index == initial_members | length %}
{% endif %}
{% endfor %}
{{ get_students(course.name) | length }} {{ _("Enrolled") }}
{% endif %}
{% if not course.disable_self_learning and not membership and not course.upcoming and not restriction.restrict %}
{% endif %}
{% if membership %}
{% set lesson_index = get_lesson_index(membership.current_lesson) if membership and
membership.current_lesson
else '1.1' %}
Continue Learning
{% endif %}
{% if course.upcoming and not is_user_interested %}
Notify me when available
{% endif %}
{% if is_cohort_staff(course.name, frappe.session.user) %}
Manage the course
{% endif %}
{% set certificate = is_certified(course.name) %}
{% set progress = frappe.utils.cint(membership.progress) %}
{% if certificate %}
{{ _("Get Certificate") }}
{% elif course.enable_certification and progress == 100 %}
{{ _("Get Certificate") }}
{% endif %}
{{ _("Course Include:") }}
{% if get_lessons(course.name) | length %}

{{ get_lessons(course.name) | length }} {{ _("Lessons") }}
{% endif %}