{% 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 %}