{% extends "templates/base.html" %} {% from "www/macros/profile.html" import profile %} {% block title %}{{ "Courses" }}{% endblock %} {% block head_include %} {% endblock %} {% block content %}
Enrolled

{{ course.title }}

{{course.short_introduction}}
{% if is_mentor %}

Your Batches

{% if mentor_batches %}
You are a mentor for this course. Manage your batches or create a new batch from here.
{% for batch in mentor_batches %}
{{batch.status}}
Starting {{frappe.utils.format_date(batch.start_date, "medium")}}
Sessions every {{batch.sessions_on}}
{{frappe.utils.format_time(batch.start_time, "short")}} - {{frappe.utils.format_time(batch.end_time, "short")}}
{% if batch.mentors %}
Mentors
{% for mentor in batch.mentors %}
{{ profile(mentor.photo, mentor.full_name, mentor.abbr, "small")}}
{{mentor.full_name}}
{% endfor %}
{% endif %}
{% endfor %}
Add a new batch
{% else %}

You are a mentor for this course.

{% endif %} {% endif %} {% if not is_mentor and upcoming_batches %}

Upcoming Batches

{% for batch in upcoming_batches %}
Starting {{frappe.utils.format_date(batch.start_date, "medium")}}
Sessions every {{batch.sessions_on}}
{{frappe.utils.format_time(batch.start_time, "short")}} - {{frappe.utils.format_time(batch.end_time, "short")}}
{% if batch.mentors %}
Mentors
{% for mentor in batch.mentors %}
{{ profile(mentor.photo, mentor.full_name, mentor.abbr, "small")}}
{{mentor.full_name}}
{% endfor %}
{% endif %}
{% endfor %}
{% endif %}

About the Course

{{frappe.utils.md_to_html(course.description)}}

Instructor

{{ profile(instructor.photo, instructor.full_name, instructor.abbr, "small")}}
{{instructor.full_name}}
{{instructor.course_count}} Courses

Mentors

{% for mentor in mentors %}
{{ profile(mentor.photo, mentor.full_name, mentor.abbr, "small")}}
{{mentor.full_name}}
{% if mentor.batch_count %}
Mentored {{mentor.batch_count}} {% if mentor.batch_count == 1 %} Batch {% else %} Batches {% endif %}
{% else %}
New Mentor
{% endif %}
{% endfor %}
Interested to mentor this course? Apply now!
You've applied to become a mentor for this course. Your request is currently under review. If you are not any more interested to mentor this course, you can Cancel your Application.
{% if course.topics %}

Topics

{% for topic in course.topics %}
{{topic.title}}
{{topic.preview | markdown }}
{% endfor %}
{% endif %}
{% endblock %}