{% extends "templates/base.html" %} {% block title %}{{ 'Courses' }}{% endblock %} {% block head_include %} {% endblock %} {% block content %} Courses Enrolled {{ course.title }} Course Details {% if discussions %} Discussions {% endif %} {{ frappe.utils.md_to_html(course.description) }} {% for topic in course.topics %} {{topic.title}} {{topic.preview | markdown }} {% endfor %} {% if batches %} {{ batches[0] }} {% for batch in batches %} {{ batch }} {% endfor %} {% endif %} Send {% if discussions %} {% for message in discussions %} {{ message.author }} {{ message.message }} {{ message.creation }} {% endfor %} {% endif %} {% endblock %}