{% extends "templates/base.html" %} {% block title %} Batch {% endblock %} {% block head_include %} {% endblock %} {% block content %} {% set invite_link = frappe.utils.get_url() + "/courses/" + course.name + "/" + batch.name + "/join" %}
{{ widgets.BatchTabs(course=course, batch=batch) }}

{{ batch.title }}

{{ widgets.CourseOutline(course=course, batch=batch, show_link=True) }}

Batch Schedule

{{ widgets.RenderBatch(course=course, batch=batch) }}
{% if batch.description %}

Batch Details

{{ frappe.utils.md_to_html(batch.description) }} {% endif %} {% if course.is_mentor(frappe.session.user) %}

Invite Members

Get Batch Invitation Link
{% endif %}
{% endblock %}