{% macro InstructorsSection(instructor) %}

Instructor

{{instructor.full_name}}
Created {{instructor.get_course_count()}} courses
{% endmacro %} {% macro MentorsSection(mentors, is_mentor, course_name) %}

Mentors

{% for m in mentors %}
{{m.full_name}}
Mentored {{m.get_batch_count()}} batches
{% endfor %} {% if not is_mentor %}
Interested to become a mentor?
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.
{% endif %} {% endmacro %} {% macro BatchHearder(course_name, member_count) %}

{{course_name}}

{{member_count}} members
{% endmacro %}