{% extends "templates/base.html" %} {% from "www/macros/sidebar.html" import Sidebar %} {% from "www/macros/common_macro.html" import InstructorsSection, MentorsSection %} {% block title %}About{% endblock %} {% block head_include %} {% endblock %} {% block content %} {{ Sidebar(course.name, batch.name) }}
{{ CourseBasicDetail(course)}} {{ InstructorsSection(course.get_instructor()) }} {{ BatchDetails(batch)}}
{% endblock %} {% macro CourseBasicDetail(course) %}

{{course.title}}

{{course.short_introduction}}
{% if course.video_link %}
{% endif %}

About the Course

{{frappe.utils.md_to_html(course.description)}}
{% endmacro %} {% macro BatchDetails(batch) %}

About the Batch

Session every {{batch.sessions_on}}
{{frappe.utils.format_time(batch.start_time, "short")}} - {{frappe.utils.format_time(batch.end_time, "short")}}
Starting {{frappe.utils.format_date(batch.start_date, "medium")}}
mentors
{% for m in batch.get_mentors() %}
{{ widgets.Avatar(member=m, avatar_class="avatar-medium" ) }} {{m.full_name}}
{% endfor %}
{% endmacro %}