{% macro InstructorsSection(instructor) %}

Instructor

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

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!
{% endif %} {% endmacro %} {% macro BatchHearder(course_name, member_count) %}

{{course_name}}

{{member_count}} members
{% endmacro %}