{% if course.get_chapters() | length %}
{{ course.get_chapters() | length }} Chapters
{% endif %}
{% if course.get_chapters() | length and course.get_upcoming_batches() | length %}
.
{% endif %}
{% if course.get_upcoming_batches() | length %}
{{ course.get_upcoming_batches() | length }} Open Batches
{% endif %}
{{ course.title }}
{% set membership = course.get_membership(frappe.session.user) %}
{% set lesson_index = course.get_lesson_index(membership.current_lesson) if membership and
membership.current_lesson
else '1.1' %}
{% set query_parameter = "?batch=" + membership.batch if membership and membership.batch else "" %}
{% if course.upcoming %}
Upcoming Course
{% elif membership %}
Continue Course
{% else %}
View Course
{% endif %}