{% extends "templates/base.html" %} {% block title %} Batch {% endblock %} {% block head_include %} {% endblock %} {% block content %}
{{ widgets.BatchTabs(course=course, membership=membership) }}
{{ widgets.CourseOutline(course=course, batch=batch, show_link=True, show_progress=True) }}
{% if batch %}

Batch Schedule

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

Batch Details

{{ frappe.utils.md_to_html(batch.description) }}
{% endif %} {% endif %} {% if course.is_mentor(frappe.session.user) %} {% set invite_link = frappe.utils.get_url() + "/courses/" + course.name + "/join?batch=" + batch.name %}

Invite Members

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